Gets the collection of the attachment headers.
A HeaderCollection object containing the headers of the attachment.
This property allows the developer to access any headers of the attachment, add new headers, or modify/delete existing ones.
Use RawHeader property to get the header section of the attachment as a string.
This sample loads the message from .EML file and displays the headers of each attachment.
[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 attachment... foreach (Attachment attach in msg.Attachments) { // ...show the name of the attachment and iterate through its headers. Console.WriteLine("Headers of " + attach.Filename + " attachment:"); // For every header... foreach (Header hdr in attach.Headers) { // ...show the header name and value. Console.WriteLine(hdr.Name + ": " + hdr.Value); } }
[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 attachment... For Each attach As Attachment In msg.Attachments ' ...show the name of the attachment and iterate through its headers. Console.WriteLine("Headers of " & attach.Name & " attachment:") ' For every header... For Each hdr As Header In attach.Headers ' ...show the header name and value. Console.WriteLine(hdr.Name & ": " & hdr.Value) Next Next
Attachment Class | MailBee.Mime Namespace | RawHeader