vote up 3 vote down star

I need to read from Outlook .MSG file in .NET without using COM API for Outlook (cos it will not be installed on the machines that my app will run). Are there any free 3rd party libraries to do that? I want to extract From, To, CC and BCC fields. Sent/Receive date fields would be good if they are also stored in MSG files.

flag

60% accept rate

5 Answers

vote up 0 vote down

There is code avaliable on CodeProject for reading .msg files without COM. See here.

link|flag
vote up 1 vote down

It's a "Structured Storage" document. I've successfully used Andrew Peace's code to read these in the past, even under .NET (using C++/CLI) - it's clean and fairly easy to understand. Basically, you need to figure out which records you need, and query for those - it gets a little bit hairy, since different versions of Outlook and different types of messages will result in different records...

link|flag
vote up 1 vote down check

Update: I have found a 3rd party COM library called Outlook Redemption which is working fine for me at the moment. If you use it via COM-Interop in .NET, don't forget to release every COM object after you are done with it, otherwise your application crashes randomly.

link|flag
vote up 4 vote down

Microsoft has documented this: .MSG File Format Specification

link|flag
vote up 0 vote down

If you open the .MSG file in a text editor, i believe you will find that the information you are after is stored as plain text inside the file. (It is on all the messages i have checked at least)

It would be pretty easy to write some code to parse the file looking for lines beginning with "From:" or "To:" etc. and then extracting the information you need.

If you need the body of the email as well, that may be a bit more complicated.

link|flag
I believe thats .eml files .msg are binary – tigermain Jun 10 at 21:52

Your Answer

Get an OpenID
or

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