Click or drag to resize
MimeKit

SmtpClientOnRecipientAccepted Method

Invoked when a recipient is accepted by the SMTP server.

Namespace: MailKit.Net.Smtp
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
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