I\'m writing a a C# program that processes and forwards email messages. I have a POP3 library and a MIME parser, and I need to copy the MIME tree into a System.Net.Ma
From a 10,000ft overview, here is what I would do.
Flatten your mime parts into a tree. Make sure each part contains 1, and only 1 part (not a parent like a multipart/related, or something like that).
Check the following conditions for the body:
If the 1st part is HTML,set it to the body of the message
If the 1st part is plain text, and the 2nd part is not html, set the plain text part to the body of the message.
If the first part is plain, and the 2nd part is html, create 2 alternative views. ***This assumes none of these parts has a Content-Disposition:attachment header.
Loop through the remainder of the parts. Add everything else as an attachment, except
images that have a content-id header set, or
images that have a content-location header set.
If one of those headers exist, then I would add those images in as a LinkedResource (only if there is actually a HTML body part).
That should get you started, and cover about 99% of the normal email out there.