MimePartContentType Property |
Namespace: MailBee.Mime
The content type value usually consists of common and specific types delimited with "/" character (e.g. image/jpeg, text/html, text/plain, etc). For instance, if the header is Content-Type: text/plain; charset="GB2312", the text/plain value will be returned (additional parameters of Content-Type header will be omitted).
See Attachment.ContentType for more information regarding content types.
// To use the code below, import MailBee namespaces at the top of your code. using MailBee; using MailBee.Mime; // The actual code (put it into a method of your class) // Load the message from file. MailMessage msg = new MailMessage(); msg.LoadMessage(@"C:\Docs\TestMail.eml"); // For every part... foreach (MimePart part in msg.MimePartTree.GetAllParts()) { // ...show part type. Console.WriteLine("The type is " + part.ContentType); }