vote up 1 vote down star

Is there a class or set of functions built into the .NET Framework (3.5+) to parse raw emails (MIME documents)?

I am not looking for anything fancy or a separate library, it needs to be built-in. I'm going to be using this in some unit tests and need only grab the main headers of interest (To, From, Subject) along with the body (which in this case will always be text and therefore no MIME trees or boundaries). I've written several MIME parsers in the past and if there isn't anything readily available, I'll just put together something from regular expressions. It would be great to be able to do something like:

MailMessage msg = MailMessage.Parse(text);

Thoughts?

flag

1  
Please get in the habit of accepting the best answer provided, the one solving your problem. A "23% accept rate" on your user badge is really bad for your reputation. It's the right and polite thing to do on StackOverflow. See: meta.stackoverflow.com/questions/5234/… – marc_s Nov 3 at 21:36
1  
Crikey, 23% accept rate isn't poor. It's piss poor! – Wim Hollebrandse Nov 3 at 23:04
Thanks for the comments ON THE QUESTION; helpful – Neil C. Obremski Nov 5 at 18:34
I'm going back through and accepting answers based on the highest vote now. I'm also finding a lot of questions that I asked and I answered but could not "mark as the answer" at the time because my rep was too low. Chicken and egg :P – Neil C. Obremski Nov 5 at 18:42

4 Answers

vote up 2 vote down check

I know you said no external libraries, but I have a library posted on codeplex:

http://mailutilities.codeplex.com/

MimeMessage msg = new MimeMessage(/* string, stream, or Byte[] */);

It has been tested with over 40,000 real-world mail messages.

I'm not too happy with my namespace choice, but... I'm too lazy to change it.


PS:

Internally, my library users these regexes as a parser:

internal static string FullMessageMatch =
    @"\A(?<header>(?:[^\r\n]+\r\n)*)(?<header_term>\r\n)(?<body>.*)\z";
internal static string HeadersMatch =
    @"^(?<header_key>[-A-Za-z0-9]+)(?<seperator>:[ \t]*)(?<header_value>([^\r\n]|\r\n[ \t]+)*)(?<terminator>\r\n)";
internal static string HeaderSeperator =
    "\r\n";
internal static string KeyValueSeparator =
    @"\A:[ \t]*\z";
link|flag
John, instead of using your library perhaps he could use a class or two out of your source? – psasik Nov 3 at 20:24
1  
Yes, Absolutely. – John Gietzen Nov 3 at 20:25
vote up -1 vote down

You could try .Net Regex functionality. Raw MIME should fall into a pretty regular pattern that is simple to Regex parse. Especially given your simple requirements.

link|flag
This is definitely not true. It is not possible to parse correctly MIME syntax using regex. Regular expressions are not designed for context-free grammar. – Pawel Lesnikowski Nov 5 at 10:00
@Pawel: Look at the leading answer. John has a library that uses RegEx to parse MIME messages. And btw MIME has to have a some discernable pattern. How else could email be interpreted by different servers and clients? And if there is a pattern, RegEx can be used. – psasik Nov 5 at 14:22
@psasik Let me give you an example: you are not able to extract value from the following pattern: any number of '(' followed by some string and then by the same number of ')'. For instance: "((value))", "(value)" but not from "(((value))". Although you can use RegExp, you are not able to determine that "(((value))" is in fact something different. In general there are languages that can be generated by a context-free grammar that cannot be generated by any regular expression. – Pawel Lesnikowski Nov 9 at 11:49
vote up 0 vote down

No, there is no way to do that yet. Microsoft has not created a Text-to-Message convertor just as they haven't created a POP3 or IMAP library. Unfortunate.

link|flag
vote up 1 vote down

Check out Mail.dll .NET mail component, it has build in MIME support, unicode, and multi-national email support:

SimpleMailMessageBuilder builder = new SimpleMailMessageBuilder();

// Here you get the message class with attachments, visuals
ISimpleMailMessage message = builder.CreateFromEml(File.ReadAllText("test.eml"));

// you can access entire MIME document:
MimeDocument document = message.Document;

You can download it here: http://www.lesnikowski.com/mail.

link|flag

Your Answer

Get an OpenID
or

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