I'm trying to use Exchange Web Services Managed API 1.1 to connect to Exchange and then find out if an email has been sent or received and save a copy of the .msg file to a folder on the disk.

So far, I have the following code

Dim service As New Microsoft.Exchange.WebServices.Data.ExchangeService(ExchangeVersion.Exchange2007_SP1)

service.AutodiscoverUrl("name@example.com")
service.UseDefaultCredentials = True
Dim ver = service.RequestedServerVersion

Dim inbox As Folder = Folder.Bind(service, WellKnownFolderName.Inbox)
Console.Out.WriteLine(inbox.UnreadCount.ToString())

Dim sentItems As Folder = Folder.Bind(service, WellKnownFolderName.SentItems)
Console.Out.WriteLine(sentItems.TotalCount.ToString())

What I want is to fire an event which saves the email (in .msg format) to the file system. But I can't seem to find any way to do this with the EWS Managed API, I would settle for a function to call to see if new messages exist since last call or similar without preforming searches all the time. I would rather not implement this as an outlook plugin because we need it to work seamlessly with the web version as well as the full client.

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

I couldn't find any direct way to do with within the framework so I used Redemption and the following code to resolve it:

Dim redSess As Redemption.RDOSession = CreateObject("Redemption.RDOSession")
Dim savedMsg = redSess.GetMessageFromMsgFile("c:\test_ews_m_API2.msg", True)
savedMsg.Import("c:\test_ews_m_API.eml", 1024)
savedMsg.Save()
link|improve this answer
feedback

Solution given here confirms that is possible to download messages in .msg format with EWS:

http://www.independentsoft.de/exchangewebservices/tutorial/downloadmessagetomsgfile.html

link|improve this answer
1  
Except it requires 3rd party software from them just like using Redemption as my example, they seem to just overload the EWS mail item with their custom class which has Save to Msg functionality. The EWS I'm using is the one provided by Microsoft not from these people – Seph Jan 20 '11 at 7:11
Seph, can you elaborate ? What custom class? – Sonic Soul Apr 12 '11 at 23:35
the 'custom class' I refer to is the one defined in their API, the line Independentsoft.Msg.Message msgFile which is why they can then call msgFile.Save("c:\\test\\message" + i + ".msg", true); because msgFile is not a type defined by Outlook or Exchange Web Services and is a custom type they have written for their API instead (much like Redemption) – Seph May 17 '11 at 23:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.