RecipientStatusEmailAddress Property
Gets the e-mail address of the recipient for which this RecipientStatus object applies.

Namespace: MailBee.BounceMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public string EmailAddress { get; }

Property Value

Type: String
A string value with the e-mail address, or empty string or a null reference (Nothing in Visual Basic) if not available.
Remarks
If IsBounced is true, that means that the original e-mail message was not delivered to EmailAddress recipient. You may consider exclusion of this e-mail address from your mailing list.
Note Note
For out-of-office autoreply messages, this property can be not set because it's often not available in the autoreply message body. However, you can use From address of the MailMessage for which you're running this bounce check. This is because out-of-office replies are usually sent from the address in question (while "real" bounces are usually sent from "postmaster"-like account and specify the email address in question somewhere in the message body).
See Also