SESV2.Client.
send_bulk_email
(**kwargs)¶Composes an email message to multiple destinations.
See also: AWS API Documentation
Request Syntax
response = client.send_bulk_email(
FromEmailAddress='string',
FromEmailAddressIdentityArn='string',
ReplyToAddresses=[
'string',
],
FeedbackForwardingEmailAddress='string',
FeedbackForwardingEmailAddressIdentityArn='string',
DefaultEmailTags=[
{
'Name': 'string',
'Value': 'string'
},
],
DefaultContent={
'Template': {
'TemplateName': 'string',
'TemplateArn': 'string',
'TemplateData': 'string'
}
},
BulkEmailEntries=[
{
'Destination': {
'ToAddresses': [
'string',
],
'CcAddresses': [
'string',
],
'BccAddresses': [
'string',
]
},
'ReplacementTags': [
{
'Name': 'string',
'Value': 'string'
},
],
'ReplacementEmailContent': {
'ReplacementTemplate': {
'ReplacementTemplateData': 'string'
}
}
},
],
ConfigurationSetName='string'
)
This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to use the email address specified in the FromEmailAddress
parameter.
For example, if the owner of example.com (which has ARN arn:aws:ses:us-east-1:123456789012:identity/example.com) attaches a policy to it that authorizes you to use sender@example.com, then you would specify the FromEmailAddressIdentityArn
to be arn:aws:ses:us-east-1:123456789012:identity/example.com, and the FromEmailAddress
to be sender@example.com.
For more information about sending authorization, see the Amazon SES Developer Guide.
The "Reply-to" email addresses for the message. When the recipient replies to the message, each Reply-to address receives the reply.
This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to use the email address specified in the FeedbackForwardingEmailAddress
parameter.
For example, if the owner of example.com (which has ARN arn:aws:ses:us-east-1:123456789012:identity/example.com) attaches a policy to it that authorizes you to use feedback@example.com, then you would specify the FeedbackForwardingEmailAddressIdentityArn
to be arn:aws:ses:us-east-1:123456789012:identity/example.com, and the FeedbackForwardingEmailAddress
to be feedback@example.com.
For more information about sending authorization, see the Amazon SES Developer Guide.
A list of tags, in the form of name/value pairs, to apply to an email that you send using the SendEmail
operation. Tags correspond to characteristics of the email that you define, so that you can publish email sending events.
Contains the name and value of a tag that you apply to an email. You can use message tags when you publish email sending events.
The name of the message tag. The message tag name has to meet the following criteria:
The value of the message tag. The message tag value has to meet the following criteria:
[REQUIRED]
An object that contains the body of the message. You can specify a template message.
The template to use for the bulk email message.
The name of the template. You will refer to this name when you send email using the SendTemplatedEmail
or SendBulkTemplatedEmail
operations.
The Amazon Resource Name (ARN) of the template.
An object that defines the values to use for message variables in the template. This object is a set of key-value pairs. Each key defines a message variable in the template. The corresponding value defines the value to use for that variable.
[REQUIRED]
The list of bulk email entry objects.
Represents the destination of the message, consisting of To:, CC:, and BCC: fields.
Note
Amazon SES does not support the SMTPUTF8 extension, as described in RFC6531. For this reason, the local part of a destination email address (the part of the email address that precedes the @ sign) may only contain 7-bit ASCII characters. If the domain part of an address (the part after the @ sign) contains non-ASCII characters, they must be encoded using Punycode, as described in RFC3492.
An array that contains the email addresses of the "To" recipients for the email.
An array that contains the email addresses of the "CC" (carbon copy) recipients for the email.
An array that contains the email addresses of the "BCC" (blind carbon copy) recipients for the email.
A list of tags, in the form of name/value pairs, to apply to an email that you send using the SendBulkTemplatedEmail
operation. Tags correspond to characteristics of the email that you define, so that you can publish email sending events.
Contains the name and value of a tag that you apply to an email. You can use message tags when you publish email sending events.
The name of the message tag. The message tag name has to meet the following criteria:
The value of the message tag. The message tag value has to meet the following criteria:
The ReplacementEmailContent
associated with a BulkEmailEntry
.
The ReplacementTemplate
associated with ReplacementEmailContent
.
A list of replacement values to apply to the template. This parameter is a JSON object, typically consisting of key-value pairs in which the keys correspond to replacement tags in the email template.
dict
Response Syntax
{
'BulkEmailEntryResults': [
{
'Status': 'SUCCESS'|'MESSAGE_REJECTED'|'MAIL_FROM_DOMAIN_NOT_VERIFIED'|'CONFIGURATION_SET_NOT_FOUND'|'TEMPLATE_NOT_FOUND'|'ACCOUNT_SUSPENDED'|'ACCOUNT_THROTTLED'|'ACCOUNT_DAILY_QUOTA_EXCEEDED'|'INVALID_SENDING_POOL_NAME'|'ACCOUNT_SENDING_PAUSED'|'CONFIGURATION_SET_SENDING_PAUSED'|'INVALID_PARAMETER'|'TRANSIENT_FAILURE'|'FAILED',
'Error': 'string',
'MessageId': 'string'
},
]
}
Response Structure
(dict) --
The following data is returned in JSON format by the service.
BulkEmailEntryResults (list) --
One object per intended recipient. Check each response object and retry any messages with a failure status.
(dict) --
The result of the SendBulkEmail
operation of each specified BulkEmailEntry
.
Status (string) --
The status of a message sent using the SendBulkTemplatedEmail
operation.
Possible values for this parameter include:
Error (string) --
A description of an error that prevented a message being sent using the SendBulkTemplatedEmail
operation.
MessageId (string) --
The unique message identifier returned from the SendBulkTemplatedEmail
operation.
Exceptions
SESV2.Client.exceptions.TooManyRequestsException
SESV2.Client.exceptions.LimitExceededException
SESV2.Client.exceptions.AccountSuspendedException
SESV2.Client.exceptions.SendingPausedException
SESV2.Client.exceptions.MessageRejected
SESV2.Client.exceptions.MailFromDomainNotVerifiedException
SESV2.Client.exceptions.NotFoundException
SESV2.Client.exceptions.BadRequestException