views:

428

answers:

4

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.Mail.MailMessage.

What is the best way to map different MIME parts to AlternateViews, LinkedResources, and Attachments?

EDIT: That will work with all mail clients (both sending and receiving)

A: 

Right now, I'm copying anything with a Content-Disposition which isn't inline, or with a MIME category of anything other than Text or Image, to an Attachment, anything inline, or anything with a MIME category of Image to a LinkedResource on the HTML view or the last view, and anything else as an AlternateView. (I haven't tested this yet)

SLaks
A: 

Might not be the best way, but i'd try to get the 'raw' email and just replace to the to with the new e-mail

Fredrik Leijon
SmtpClient cannot send raw MIME source
SLaks
True, it would be a nice little hack to make it work (ie tcpclient to the smpt to send) or something similar
Fredrik Leijon
A: 

Hi,

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).

1)Check the following conditions for the body:

a)If the 1st part is HTML,set it to the body of the message

b)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.

c)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.

2)Loop through the remainder of the parts. Add everything else as an attachment, except

a)images that have a content-id header set, or 

b)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.

Cheers!

Dave

dave wanta
A: 

Hmmmm, do you absolutely need to use System.Net.Mail.MailMessage?

System.Net.Mail.MailMessage offers only a very small subset of what MIME offers. So, if your MIME parser aims to support all/most standard features then your goal of copying a MIME message into MailMessage will be difficult at best and impossible at worst. Doesn't the library providing POP3 access also provide SMTP access? If so, I'd leave System.Net.Mail.MailMessage alone and go with whatever the thrid party library provides.

Andreas Huber