I need to read material from an Outlook MSG file. I am currently using a class from CodeProject.com to accomplish this, since deploying VSTO and Outlook on the server is not an option.
This class gets To, From, CC, Subject, Body and everything else that I need from the msg file, except for the date information (for example, Received date and Sent date).
There is some (really, really low level) documentation on how to extract material from MSG files on MSDN, but this is a bit beyond the scope of this project and does not mention dates at all.
Ideally, I could have a replacement for the class I'm using now (OutlookStorage.cs in the previously mentioned CodeProject), or slightly modify an existing class. To change, I will need the correct 4-character scroll identifier for the received date. For example, Subject is displayed as PR_SUBJECT = "0037" , and Body is indicated as PR_BOY = "1000" .
email outlook metadata
benmatth
source share