SmtpGetAcceptedRecipients Method
Returns the list of the recipients accepted by the SMTP server.

Namespace: MailBee.SmtpMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public EmailAddressCollection GetAcceptedRecipients()

Return Value

Type: EmailAddressCollection
In "send to relay SMTP server" mode, returns the list of all recipients accepted 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 received the message.
Remarks
This method is useful when refused recipients are allowed (AllowRefusedRecipients is true or direct send mode is used).
Note Note
Sucessful submitting the recipient to the server does not mean the server will really deliver the message to the recipient. It just means the server agreed to deliver the message, but it may fail to do so.
See Also