|  | IMailTransportSend(FormatOptions, MimeMessage, MailboxAddress, IEnumerableMailboxAddress, CancellationToken, ITransferProgress) Method | 
            Send the specified message using the supplied sender and recipients.
            
Namespace: MailKitAssembly: MailKit (in MailKit.dll) Version: 4.12.1
 Syntax
Syntaxstring Send(
	FormatOptions options,
	MimeMessage message,
	MailboxAddress sender,
	IEnumerable<MailboxAddress> recipients,
	CancellationToken cancellationToken = default,
	ITransferProgress progress = null
)
Parameters
- options  FormatOptions
- The formatting options.
- message  MimeMessage
- The message.
- sender  MailboxAddress
- The mailbox address to use for sending the message.
- recipients  IEnumerableMailboxAddress
- The mailbox addresses that should receive the message.
- cancellationToken  CancellationToken  (Optional)
- The cancellation token.
- progress  ITransferProgress  (Optional)
- The progress reporting mechanism.
Return Value
StringThe final free-form text response from the server.
 Remarks
Remarks
            Sends the specified message using the supplied sender and recipients.
            
 See Also
See Also