MailBee.NET Objects 4.0

EmailAddressCollection.Item Property

Gets the EmailAddress object at the specified zero-based index in the collection.

public EmailAddress this[
   int index
] {get;}

Parameters

index
The zero-based index of the e-mail address in the collection.

Property Value

An EmailAddress object having the specified zero-based index in the collection.

Exceptions

Exception Type Condition
ArgumentOutOfRangeException The specified index does not exist.

Example

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

See Also

EmailAddressCollection Class | MailBee.Mime Namespace | EmailAddress