Click here to Skip to main content
15,881,852 members
Articles / Programming Languages / C#
Article

Advanced MIME Parser/Creator/Editor

Rate me:
Please Sign up or sign in to vote.
4.91/5 (66 votes)
5 Oct 2005 990.4K   7.7K   116   322
An advanced MIME parser/creator/editor application.

Introduction

This article provides an advanced MIME editor. You can use it for parsing email messages, changing messages and for creating new email messages. It supports creation of complex messages with nested MIME entities. For more info, see help file: LumiSoft.Net.Mime namespace.

Message examples

Simple message:

//--- Beginning of message
From: sender@domain.com
To: recipient@domain.com
Subject: Message subject.
Content-Type: text/plain

Message body text. Bla blaa
blaa,blaa.
//--- End of message

In simple message, the MainEntity is the whole message.

Message with attachments:

//--- Beginning of message
From: sender@domain.com
To: recipient@domain.com
Subject: Message subject.
Content-Type: multipart/mixed; boundary="multipart_mixed"

--multipart_mixed    /* text entity */
Content-Type: text/plain

Message body text. Bla blaa
blaa,blaa.
--multipart_mixed    /* attachment entity */
Content-Type: application/octet-stream

attachment_data
--multipart_mixed--
//--- End of message

Here MainEntity is the multipart_mixed entity, and the text and attachment entities are child entities of MainEntity.

Using the code

Parsing example:

C#
Mime m = Mime.Parse("message.eml");
// Do your stuff with mime

Creating a new simple message:

C#
Mime m = new Mime();
MimeEntity mainEntity = m.MainEntity;
// Force to create From: header field
mainEntity.From = new AddressList();
mainEntity.From.Add(new MailboxAddress("dispaly name","user@domain.com"));
// Force to create To: header field
mainEntity.To = new AddressList();
mainEntity.To.Add(new MailboxAddress("dispaly name","user@domain.com"));
mainEntity.Subject = "subject";
mainEntity.ContentType = MediaType_enum.Text_plain;
mainEntity.ContentTransferEncoding = ContentTransferEncoding_enum.QuotedPrintable;
mainEntity.DataText = "Message body text.";

m.ToFile("message.eml");

Creating a message with text and attachments:

C#
Mime m = new Mime();
MimeEntity mainEntity = m.MainEntity;
// Force to create From: header field
mainEntity.From = new AddressList();
mainEntity.From.Add(new MailboxAddress("dispaly name","user@domain.com"));
// Force to create To: header field
mainEntity.To = new AddressList();
mainEntity.To.Add(new MailboxAddress("dispaly name","user@domain.com"));
mainEntity.Subject = "subject";
mainEntity.ContentType = MediaType_enum.Multipart_mixed;

MimeEntity textEntity = mainEntity.ChildEntities.Add();
textEntity.ContentType = MediaType_enum.Text_plain;
textEntity.ContentTransferEncoding = ContentTransferEncoding_enum.QuotedPrintable;
textEntity.DataText = "Message body text.";

MimeEntity attachmentEntity = mainEntity.ChildEntities.Add();
attachmentEntity.ContentType = MediaType_enum.Application_octet_stream;
attachmentEntity.ContentDisposition = ContentDisposition_enum.Attachment;
attachmentEntity.ContentTransferEncoding = ContentTransferEncoding_enum.Base64;
attachmentEntity.ContentDisposition_FileName = "yourfile.xxx";
attachmentEntity.DataFromFile("yourfile.xxx");
// or
attachmentEntity.Data = your_attachment_data;

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Estonia Estonia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: BCC missing from Mail_Message.ParseFromFile() [modified] Pin
bertkid12-Jan-12 4:08
bertkid12-Jan-12 4:08 
GeneralSERVER_FALURE when connecting by SmtpClientEx Pin
jozefkarton17-Dec-10 11:13
jozefkarton17-Dec-10 11:13 
GeneralRe: SERVER_FALURE when connecting by SmtpClientEx Pin
Ivar Lumi17-Dec-10 20:16
Ivar Lumi17-Dec-10 20:16 
GeneralRe: SERVER_FALURE when connecting by SmtpClientEx Pin
jozefkarton19-Dec-10 11:21
jozefkarton19-Dec-10 11:21 
GeneralRe: SERVER_FALURE when connecting by SmtpClientEx Pin
Ivar Lumi19-Dec-10 20:01
Ivar Lumi19-Dec-10 20:01 
GeneralRe: SERVER_FALURE when connecting by SmtpClientEx Pin
jozefkarton20-Dec-10 11:18
jozefkarton20-Dec-10 11:18 
GeneralRe: SERVER_FALURE when connecting by SmtpClientEx Pin
Ivar Lumi20-Dec-10 21:10
Ivar Lumi20-Dec-10 21:10 
GeneralRe: SERVER_FALURE when connecting by SmtpClientEx Pin
jozefkarton22-Dec-10 7:54
jozefkarton22-Dec-10 7:54 
Thank you very much. You are right. My bad. I really appreciate your work.
Greetings.
GeneralRe: SERVER_FALURE when connecting by SmtpClientEx Pin
Ivar Lumi22-Dec-10 8:06
Ivar Lumi22-Dec-10 8:06 
GeneralMy vote of 5 Pin
joni_555-Dec-10 3:47
joni_555-Dec-10 3:47 
QuestionCan i get the percent of downloaded attachment? Pin
joni_554-Dec-10 11:17
joni_554-Dec-10 11:17 
AnswerRe: Can i get the percent of downloaded attachment? Pin
Ivar Lumi5-Dec-10 1:38
Ivar Lumi5-Dec-10 1:38 
QuestionThe download allows building of the dll. Is there a test application? Pin
Gary Dryden4-Dec-10 8:55
Gary Dryden4-Dec-10 8:55 
AnswerRe: The download allows building of the dll. Is there a test application? Pin
Ivar Lumi5-Dec-10 1:36
Ivar Lumi5-Dec-10 1:36 
QuestionRe: The download allows building of the dll. Is there a test application? Pin
Gary Dryden5-Dec-10 3:50
Gary Dryden5-Dec-10 3:50 
AnswerRe: The download allows building of the dll. Is there a test application? Pin
Ivar Lumi5-Dec-10 19:57
Ivar Lumi5-Dec-10 19:57 
QuestionEmbedded pictures in RTF? Pin
Marijan Rengel27-Nov-10 23:14
Marijan Rengel27-Nov-10 23:14 
AnswerRe: Embedded pictures in RTF? Pin
Ivar Lumi28-Nov-10 5:29
Ivar Lumi28-Nov-10 5:29 
QuestionMime Message Body parser for windows mobile 6 Pin
ChincoCodus3-Nov-10 0:10
ChincoCodus3-Nov-10 0:10 
AnswerRe: Mime Message Body parser for windows mobile 6 Pin
Ivar Lumi3-Nov-10 1:07
Ivar Lumi3-Nov-10 1:07 
GeneralLicense question Pin
Yaron Naveh25-Oct-10 8:17
Yaron Naveh25-Oct-10 8:17 
GeneralRe: License question Pin
Ivar Lumi25-Oct-10 19:12
Ivar Lumi25-Oct-10 19:12 
GeneralRe: License question Pin
Yaron Naveh25-Oct-10 23:26
Yaron Naveh25-Oct-10 23:26 
Questionhow to set rtf data to a mime message body Pin
ravi malik10-May-10 20:40
ravi malik10-May-10 20:40 
AnswerRe: how to set rtf data to a mime message body Pin
Ivar Lumi10-May-10 20:53
Ivar Lumi10-May-10 20:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.