SmtpGetRefusedRecipients Method |
Returns the list of the recipients rejected by the SMTP server.
Namespace: MailBee.SmtpMailAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public EmailAddressCollection GetRefusedRecipients()
Public Function GetRefusedRecipients As EmailAddressCollection
Return Value
Type:
EmailAddressCollectionIn "send to relay SMTP server" mode, returns the list of the recipients
rejected by the SMTP server; in direct send mode (performing DNS MX lookup and sending to SMTP MX servers),
returns the list of all recipients who did not receive the message.
Remarks If refused recipients were not allowed in send to relay SMTP server mode (
AllowRefusedRecipients is
false),
the component will throw an exception after the refused recipient was encountered. It means
the recipients which reside in the recipients list beyond the position of the refused
recipient will not appear in
GetAcceptedRecipients and
GetRefusedRecipients collections.
See Also