MimePartIsFile Property |
Namespace: MailBee.Mime
See Attachment.IsFile for more information.
// 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). MailMessage msg = new MailMessage(); msg.LoadMessage(@"C:\Docs\TestMail.eml"); foreach (MimePart part in msg.MimePartTree.GetAllParts()) { if (part.IsFile) { Console.WriteLine("MIME part " + part.Filename + " is file."); } }