Click here to Skip to main content
Click here to Skip to main content

Advanced MIME Parser/Creator/Editor

By , 5 Oct 2005
 

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:

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

Creating a new simple message:

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:

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

About the Author

Ivar Lumi
Estonia Estonia
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionGreat job! Thank you so much but...memberATXOOM5 Nov '11 - 6:12 
AnswerRe: Great job! Thank you so much but...memberIvar Lumi5 Nov '11 - 21:13 
Generalstrange first line in saved email (*.eml)membermbican4 Oct '11 - 9:48 
GeneralRe: strange first line in saved email (*.eml)memberIvar Lumi5 Nov '11 - 21:12 
Suggestionadd support for linux line endingsmembermbican4 Oct '11 - 9:34 
GeneralRe: add support for linux line endingsmemberIvar Lumi4 Oct '11 - 19:00 
GeneralRe: add support for linux line endingsmembermbican4 Oct '11 - 19:34 
Bugmime as attachment - Mime.Attachments[0].data is nullmembermbican4 Oct '11 - 9:26 
GeneralRe: mime as attachment - Mime.Attachments[0].data is nullmemberIvar Lumi4 Oct '11 - 18:59 
QuestionExtract AttachmentmemberTOOGuy14 Mar '11 - 11:55 
AnswerRe: Extract AttachmentmemberIvar Lumi14 Mar '11 - 20:50 
GeneralRe: Extract AttachmentmemberTOOGuy16 Mar '11 - 5:16 
General100% CPU usage when sending mailsmemberjozefkarton30 Dec '10 - 9:49 
GeneralRe: 100% CPU usage when sending mailsmemberIvar Lumi30 Dec '10 - 19:54 
GeneralRe: 100% CPU usage when sending mailsmemberjozefkarton31 Dec '10 - 0:27 
GeneralRe: 100% CPU usage when sending mailsmemberIvar Lumi31 Dec '10 - 0:32 
GeneralRe: 100% CPU usage when sending mailsmemberjozefkarton31 Dec '10 - 0:59 
GeneralRe: 100% CPU usage when sending mailsmemberIvar Lumi31 Dec '10 - 1:35 
GeneralRe: 100% CPU usage when sending mailsmemberjozefkarton31 Dec '10 - 2:06 
GeneralRe: 100% CPU usage when sending mailsmemberIvar Lumi31 Dec '10 - 4:56 
GeneralRe: 100% CPU usage when sending mailsmemberjozefkarton31 Dec '10 - 6:32 
GeneralRe: 100% CPU usage when sending mailsmemberIvar Lumi31 Dec '10 - 7:10 
GeneralBCC missing from Mail_Message.ParseFromFile()memberBrad Bruce17 Dec '10 - 14:16 
GeneralRe: BCC missing from Mail_Message.ParseFromFile()memberIvar Lumi17 Dec '10 - 20:22 
GeneralRe: BCC missing from Mail_Message.ParseFromFile() [modified]memberBrad Bruce18 Dec '10 - 2:14 

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 5 Oct 2005
Article Copyright 2005 by Ivar Lumi
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid