TextBodyPartHeaders Property |
Namespace: MailBee.Mime
// 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 text part... foreach (TextBodyPart part in msg.BodyParts) { // Show the type of the text part. Console.WriteLine(string.Format("Text part {0} headers values:", part.AsMimePart.ContentType)); // For every header... foreach (Header hdr in part.Headers) { // Show the value of the header. Console.WriteLine(hdr.Value); } }