outlook

Save attachment with incoming email sender's name or email address

≯℡__Kan透↙ 提交于 2020-01-07 03:07:02
问题 I want to add the sender's name of every incoming email to the saved attachment item, by storing into a variable so I can use it later, to return the email to that name or email address. The code below first creates a counter for every item on a folder and rename the file with the date and the original attachment as follows: "2016-01-29 1026 1 POCreation" - the number 1 before the "POCreation" is the counter. Then I save the attachment by running a rule in Outlook to run below script - as you

Using Outlook Contacts In Delphi XE7

|▌冷眼眸甩不掉的悲伤 提交于 2020-01-07 03:03:44
问题 I am trying to get a list of all outlook contacts using delphi. I found a couple of examples, all seemed to be outdated or flawed. Currently I have the following code, but when I excecute the command at runtime I get the below error: Code: procedure Tinvite_friends.BitBtn2Click(Sender: TObject); const olFolderContacts = $0000000A; var outlook, NameSpace, Contacts, Contact: OleVariant; i: Integer; begin Try outlook:=GetActiveOleObject('Outlook.Application'); Except outlook:=CreateOleObject(

Downloading Outlook attachments with REST API?

安稳与你 提交于 2020-01-07 00:37:38
问题 Im working on a project that is related to the Outlook Mail API. I want to download the attachments an email has. The documantation says that i can "get" the attachments, and they return different parameters in a json response, but im curious to know which one i have to convert to what, to get the actual attachment saved on to the filesystem. http://msdn.microsoft.com/office/office365/api/mail-rest-operations#Getattachments Thank you. 回答1: As per the documentation, https://outlook.office.com

Downloading Outlook attachments with REST API?

寵の児 提交于 2020-01-07 00:36:53
问题 Im working on a project that is related to the Outlook Mail API. I want to download the attachments an email has. The documantation says that i can "get" the attachments, and they return different parameters in a json response, but im curious to know which one i have to convert to what, to get the actual attachment saved on to the filesystem. http://msdn.microsoft.com/office/office365/api/mail-rest-operations#Getattachments Thank you. 回答1: As per the documentation, https://outlook.office.com

Automatically Allow Programmatic Access to Outlook

扶醉桌前 提交于 2020-01-06 18:16:30
问题 There is a Public Shared Folder that exists on a corporate exchange server. I am trying to connect to the outlook folder, and monitor it for incoming mail. However, When I connect, my local instance of Outlook prompts me for permission. Is there anyway to circumvent this prompt? I tried adding relevant MAPI registry values, but it is still prompting. Any thoughts? Registry I am setting (python) opened_key = winreg.CreateKey(winreg.HKEY_CURRENT_USER, r'SOFTWARE\Microsoft\Office\14.0\Outlook

Automatically Allow Programmatic Access to Outlook

流过昼夜 提交于 2020-01-06 18:16:03
问题 There is a Public Shared Folder that exists on a corporate exchange server. I am trying to connect to the outlook folder, and monitor it for incoming mail. However, When I connect, my local instance of Outlook prompts me for permission. Is there anyway to circumvent this prompt? I tried adding relevant MAPI registry values, but it is still prompting. Any thoughts? Registry I am setting (python) opened_key = winreg.CreateKey(winreg.HKEY_CURRENT_USER, r'SOFTWARE\Microsoft\Office\14.0\Outlook

Automate collection of data from outlook .msg files to excel field

自古美人都是妖i 提交于 2020-01-06 18:09:29
问题 My firewall sends me a notifcation to my email every time a policy is violated. I have about 2500 emails in .msg format that I want to put into one excel document. Basically I am looking for a way to automate processing each .msg file and putting it on a new line in an excel document. All 2500+ .msg files are in a single folder. I understand that .msg files hold binary data, and thats ok. I can clean up the excel document once it is created. Thanks, Aaron 回答1: Take a look at Outlook MSG file

Automate collection of data from outlook .msg files to excel field

最后都变了- 提交于 2020-01-06 18:08:13
问题 My firewall sends me a notifcation to my email every time a policy is violated. I have about 2500 emails in .msg format that I want to put into one excel document. Basically I am looking for a way to automate processing each .msg file and putting it on a new line in an excel document. All 2500+ .msg files are in a single folder. I understand that .msg files hold binary data, and thats ok. I can clean up the excel document once it is created. Thanks, Aaron 回答1: Take a look at Outlook MSG file

Some live/hotmail user's are not receiving html mail

◇◆丶佛笑我妖孽 提交于 2020-01-06 17:14:53
问题 I'm sending html emails via phpmailer on my website. But, for some reason a few live/hotmail users are not receiving my emails. Regarding my server logs, all the e-mails just send successful to the right email addresses. When I test with my own (old)hotmail address i'm receiving the emails just fine, but some users complaining they don't. A test with a new outlook address is also not receiving any email from the website. The script is sending all the emails with SMTP auth. Where do I have to

Set custom value when item moved to folder in outlook

这一生的挚爱 提交于 2020-01-06 13:53:27
问题 I'm looking to set a Date on a field anytime an email is moved into a specific folder. the field is custom called "Completed Date". Could I get a little help on VBA code to set a custom field (date) when an item is moved into a folder (folder name is "Completed"). I'm ultimately looking to report on the time an item (custom form email) was received to the time it was completed (as per the action of moving the email to a completed folder. Very rudimentary ticketing system, I'm very aware :) .