SmtpSubmittingMessageToPickupFolderEventArgsActualRecipients Property
Gets or sets the list of recipients the message is addressed to.

Namespace: MailBee.SmtpMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public EmailAddressCollection ActualRecipients { get; set; }

Property Value

Type: EmailAddressCollection
A reference to the EmailAddressCollection object which contains the list of all recipients to the message.
Remarks

Since MailBee allows sending messages to e-mail addresses different from the addresses specified by To, Cc, and Bcc properties, the developer can use ActualRecipients property to obtain the actual addresses the message is sent to.

The developer may also set this property to change the recipients of the mail message. Passing a null reference (Nothing in Visual Basic) will make the message be sent to the recipients returned by GetAllRecipients method.

See Also