다음을 통해 공유


EmailClient.Send Method

Definition

Overloads

Send(WaitUntil, EmailMessage, CancellationToken)

Queues an email message to be sent to one or more recipients.

Send(WaitUntil, String, String, String, String, String, CancellationToken)

Queues an email message to be sent to a single recipient.

Send(WaitUntil, EmailMessage, CancellationToken)

Source:
EmailClient.cs

Queues an email message to be sent to one or more recipients.

public virtual Azure.Communication.Email.EmailSendOperation Send (Azure.WaitUntil wait, Azure.Communication.Email.EmailMessage message, System.Threading.CancellationToken cancellationToken = default);
abstract member Send : Azure.WaitUntil * Azure.Communication.Email.EmailMessage * System.Threading.CancellationToken -> Azure.Communication.Email.EmailSendOperation
override this.Send : Azure.WaitUntil * Azure.Communication.Email.EmailMessage * System.Threading.CancellationToken -> Azure.Communication.Email.EmailSendOperation
Public Overridable Function Send (wait As WaitUntil, message As EmailMessage, Optional cancellationToken As CancellationToken = Nothing) As EmailSendOperation

Parameters

wait
WaitUntil

Completed if the method should wait to return until the long-running operation has completed on the service; Started if it should return after starting the operation. For more information on long-running operations, please see Azure.Core Long-Running Operation samples.

message
EmailMessage

Message payload for sending an email.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Applies to

Send(WaitUntil, String, String, String, String, String, CancellationToken)

Source:
EmailClient.cs

Queues an email message to be sent to a single recipient.

public virtual Azure.Communication.Email.EmailSendOperation Send (Azure.WaitUntil wait, string senderAddress, string recipientAddress, string subject, string htmlContent, string plainTextContent = default, System.Threading.CancellationToken cancellationToken = default);
abstract member Send : Azure.WaitUntil * string * string * string * string * string * System.Threading.CancellationToken -> Azure.Communication.Email.EmailSendOperation
override this.Send : Azure.WaitUntil * string * string * string * string * string * System.Threading.CancellationToken -> Azure.Communication.Email.EmailSendOperation
Public Overridable Function Send (wait As WaitUntil, senderAddress As String, recipientAddress As String, subject As String, htmlContent As String, Optional plainTextContent As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As EmailSendOperation

Parameters

wait
WaitUntil

Completed if the method should wait to return until the long-running operation has completed on the service; Started if it should return after starting the operation. For more information on long-running operations, please see Azure.Core Long-Running Operation samples.

senderAddress
String

From address of the email.

recipientAddress
String

Email address of the TO recipient.

subject
String

Subject for the email.

htmlContent
String

Email body in HTML format.

plainTextContent
String

Email body in plain text format.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Applies to