AttachmentContentType Property |
Namespace: MailBee.Mime
When adding an attachment to the e-mail message (for instance, using Add(String) method of AttachmentCollection) and the content type is not specified, MailBee automatically determines its content type according to the file extension.
// 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 attachment... foreach (Attachment attach in msg.Attachments) { // ...show attachment type. Console.WriteLine("The type is " + attach.ContentType); }