Gets the Content-ID value of the MIME part.
A string containing the Content-ID (CID) value of the MIME part, or an empty string if the MIME part has no Content-ID.
See Attachment.ContentID for more information regarding Content-IDs.
This sample loads the message from .EML file and displays Content-ID of each MIME part of the message.
[C#] // 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 MIME part... foreach (MimePart part in msg.MimePartTree.GetAllParts()) { // ...show MIME part identifier. Console.WriteLine(part.ContentID); }
[Visual Basic] ' To use the code below, import MailBee namespaces at the top of your code. Imports MailBee Imports MailBee.Mime ' The actual code (put it into a method of your class) ' Load the message from file. Dim msg As New MailMessage msg.LoadMessage("C:\Docs\TestMail.eml") ' For every MIME part... For Each part As MimePart In msg.MimePartTree.GetAllParts() ' ...show MIME part identifier. Console.WriteLine(part.ContentID) Next
MimePart Class | MailBee.Mime Namespace | IsInline