SmtpMessageSentEventArgsSuccessfulRecipients Property |
Gets the list of recipients the message was successfully delivered to.
Namespace: MailBee.SmtpMailAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public EmailAddressCollection SuccessfulRecipients { get; }
Public ReadOnly Property SuccessfulRecipients As EmailAddressCollection
Get
Property Value
Type:
EmailAddressCollectionA reference to the
EmailAddressCollection object
which contains the list of all recipients which received the message.
Remarks The list of recipients returned by this property indicates which
recipients have been accepted by SMTP servers the message was submitted to.
Note |
---|
Although a particular domain's SMTP server may successfully accept the message for delivery
(and the recipients of this domain will be added into SuccessfulRecipients)
list), it still does not guarantee the server itself will deliver the message to the
recipients. Many servers accept non-existent recipient e-mail addresses when
the message is being submitted, and then send bounced message back to the sender
if certain e-mail address is invalid. |
See Also