AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
Composes an email message using an email template and immediately queues it for sending.
To send email using this operation, your call must meet the following requirements:
The call must refer to an existing email template. You can create email templates using the CreateTemplate operation.
The message must be sent from a verified email address or domain.
If your account is still in the Amazon SES sandbox, you may only send to verified addresses or domains, or to email addresses associated with the Amazon SES Mailbox Simulator. For more information, see Verifying Email Addresses and Domains in the Amazon SES Developer Guide.
The maximum message size is 10 MB.
Calls to the SendTemplatedEmail
operation may only include one Destination
parameter. A destination is a set of recipients that receives the same version of
the email. The Destination
parameter can include up to 50 recipients, across
the To:, CC: and BCC: fields.
The Destination
parameter must include at least one recipient email address.
The recipient address can be a To: address, a CC: address, or a BCC: address. If a
recipient email address is invalid (that is, it is not in the format UserName@[SubDomain.]Domain.TopLevelDomain),
the entire message is rejected, even if the message contains other recipients that
are valid.
If your call to the SendTemplatedEmail
operation includes all of the required
parameters, Amazon SES accepts it and returns a Message ID. However, if Amazon SES
can't render the email because the template contains errors, it doesn't send the email.
Additionally, because it already accepted the message, Amazon SES doesn't return a
message stating that it was unable to send the email.
For these reasons, we highly recommend that you set up Amazon SES to send you notifications when Rendering Failure events occur. For more information, see Sending Personalized Email Using the Amazon SES API in the Amazon Simple Email Service Developer Guide.
This is an asynchronous operation using the standard naming convention for .NET 4.5 or higher. For .NET 3.5 the operation is implemented as a pair of methods using the standard naming convention of BeginSendTemplatedEmail and EndSendTemplatedEmail.
Namespace: Amazon.SimpleEmail
Assembly: AWSSDK.SimpleEmail.dll
Version: 3.x.y.z
public abstract Task<SendTemplatedEmailResponse> SendTemplatedEmailAsync( SendTemplatedEmailRequest request, CancellationToken cancellationToken )
Container for the necessary parameters to execute the SendTemplatedEmail service method.
A cancellation token that can be used by other objects or threads to receive notice of cancellation.
Exception | Condition |
---|---|
AccountSendingPausedException | Indicates that email sending is disabled for your entire Amazon SES account. You can enable or disable email sending for your Amazon SES account using UpdateAccountSendingEnabled. |
ConfigurationSetDoesNotExistException | Indicates that the configuration set does not exist. |
ConfigurationSetSendingPausedException | Indicates that email sending is disabled for the configuration set. You can enable or disable email sending for a configuration set using UpdateConfigurationSetSendingEnabled. |
MailFromDomainNotVerifiedException | Indicates that the message could not be sent because Amazon SES could not read the MX record required to use the specified MAIL FROM domain. For information about editing the custom MAIL FROM domain settings for an identity, see the Amazon SES Developer Guide. |
MessageRejectedException | Indicates that the action failed, and the message could not be sent. Check the error stack for more information about what caused the error. |
TemplateDoesNotExistException | Indicates that the Template object you specified does not exist in your Amazon SES account. |
.NET:
Supported in: 8.0 and newer, Core 3.1
.NET Standard:
Supported in: 2.0
.NET Framework:
Supported in: 4.5 and newer