Gets the EmailAddress object at the specified zero-based index in the collection.
An EmailAddress object having the specified zero-based index in the collection.
| Exception Type | Condition |
|---|---|
| ArgumentOutOfRangeException | The specified index does not exist. |
This sample loads the message from .EML file and displays the e-mail address of each message recipient.
[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"); EmailAddressCollection adr = msg.GetAllRecipients(); for (int i = 0; i < msg.GetAllRecipients().Count; i++) { Console.WriteLine(adr[i]); }
[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") Dim i As Integer Dim adr As EmailAddressCollection = msg.GetAllRecipients() For i = 0 To msg.GetAllRecipients().Count Console.WriteLine(adr(i)) Next
EmailAddressCollection Class | MailBee.Mime Namespace | EmailAddress