I have a directory of .eml files that contain email conversations. Is there a recommended approach in C# of parsing files of this type?

link|improve this question

59% accept rate
feedback

6 Answers

The CDO COM DLL is part of Windows/IIS and can be referenced in .net. It will provide accurate parsing and a nice object model. Use it in conjuction with a reference to ADODB.DLL.

CDO.Message msg = new CDO.MessageClass();
ADODB.Stream stream = new ADODB.StreamClass();

stream.Open(Type.Missing, ADODB.ConnectModeEnum.adModeUnknown, ADODB.StreamOpenOptionsEnum.adOpenStreamUnspecified, String.Empty, String.Empty);
stream.LoadFromFile(emlFileName);
stream.Flush();
msg.DataSource.OpenObject(stream, "_Stream");
msg.DataSource.Save();

stream.Close();
return msg;
link|improve this answer
Ries, I have searched for solution the whole day, found many parsers and .net libraries which are partly working. Your suggested Windows library works 100%. This answer should be in the first place and above others. – Tomas Aug 16 '10 at 12:01
have you been able to use this from a 64bit app? Where did you reference the DLL? – Frank Schwieterman Jun 26 '11 at 1:26
I was able to use this solution on Windows 2008 Standard R2, unfortunately it do not work on Windows 2008 Standard(not R2). Also gives many compatible issues while using on Windows 2008 or Windows 7. – Tomas Jul 19 '11 at 13:21
Also wondering where the Lib reference lives? thx – justSteve Feb 16 at 2:49
The reference to the dll can be added from "COM" tab inside the "Add reference" dialog. It is listed under "Microsoft CDO for Windows 2000 Library". As Ries said, it's included with IIS. – niaher Mar 23 at 4:35
feedback

LumiSoft includes a Mime parser.

Sasa includes a Mime parser as well.

link|improve this answer
Sasa worked great. Thanks Mauricio – Frank Schwieterman Jun 27 '11 at 23:09
3  
reference usage in case anyone is looking: github.com/fschwiet/ManyConsole/blob/master/SampleConsole/… – Frank Schwieterman Aug 27 '11 at 23:32
feedback

Here's a CodeProject link that provides a simple wrapper: http://www.codeproject.com/KB/office/EML_Reader.aspx

link|improve this answer
feedback

What you probabaly need is a email/mime parser. Parsing all the header field is not very hard, but separating out various mime types like images, attachments, various text and html parts etc. can get very complex.

We use a third party tool but there are many c# tools/library out there. Search for free C# email mime parser in google. Like I got this one:

http://www.codeproject.com/KB/cs/mime_project.aspx

link|improve this answer
feedback

Getting a decent MIME parser would be probably a way to go. You may try to use a free MIME parser (such as this one from codeproject) but comments from code author like this

I worked on this at about the same time that I worked on a wrapper class for MSG files. Big difference in difficulty. Where the EML wrapper class maybe took a day to read the spec and get right, the MSG wrapper class took a week.

made me curious about the code quality. I'm sure that you can hack a mime parser which parses 95% of email correctly in a few days/hours. I'm also sure that getting right the remaining 5% will take months. Consider handling S/MIME (encrypted and signed email), unicode, malformed emails produced by misbehaving mail clients and servers, several encoding schemas, internationalization issues, making sure that intentionally mallformed emails will not crash your app, etc...

If email you need to parse are comming from single source the quick & dirty parser may be enough. If you need to parse emails from the wild a better solution could be needed.

I would recommend our Rebex Secure Mail component, but I'm sure that you get decent result with components from other vendors as well.

Making sure that the parser of your choice is working correctly on the infamous "Mime Torture Sample message" prepared by Mike Crispin (co-author of MIME and IMAP RFCs). The testing message is displayed in MIME Explorer sample and can be downloaded in the installation package.

Following code shows how to read and parse EML file:

using Rebex.Mail;

MailMessage message = new MailMessage();
message.Load("file.eml");
link|improve this answer
feedback

Try:

  • febootimail
  • SmtpExpress
  • LinkWS Newsletter Turbo
  • emlBridge - importing eml files into Outlook and virtually any other email client
  • Newsletter 2.1 Turbo
  • ThunderStor (emlResender)
  • Ruby (using eml2mbox). See jimbob method.
  • Evolution - create new message, attach the eml file,

Write a program:

Workarounds:

  • $ cat mail.eml | mail -s -c But headers won't be parsed, neither attachments.
  • drop them into your GMail (Firefox will save them as attachments)
link|improve this answer
The question specifically stated C# .NET yet your answers in the Try section point to non C# solutions. – CodeMonkeyKing Feb 24 '11 at 3:48
feedback

Your Answer

 
or
required, but never shown

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