| SmtpClientOnRecipientAccepted Method |
Invoked when a recipient is accepted by the SMTP server.
Namespace: MailKit.Net.SmtpAssembly: MailKit (in MailKit.dll) Version: 4.7.1
Syntax protected virtual void OnRecipientAccepted(
MimeMessage message,
MailboxAddress mailbox,
SmtpResponse response
)
Parameters
- message MimeMessage
- The message being sent.
- mailbox MailboxAddress
- The mailbox used in the RCPT TO command.
- response SmtpResponse
- The response to the RCPT TO command.
Remarks
The default implementation does nothing.
See Also