Back to Boto3

Creating custom email templates with Amazon SES

docs/source/guide/ses-template.rst

1.43.45.1 KB
Original Source

.. Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. .. SPDX-License-Identifier: Apache-2.0

.. _aws-boto3-ses-template:

############################################### Creating custom email templates with Amazon SES ###############################################

.. meta:: :description: Use the Amazon SES API to create and use email templates. :keywords: SES Python

Amazon Simple Email Service (SES) enables you to send emails that are personalized for each recipient by using templates. Templates include a subject line and the text and HTML parts of the email body. The subject and body sections can also contain unique values that are personalized for each recipient.

For more information, see Sending Personalized Email Using the Amazon SES API <https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html>__.

The following examples show how to:

  • Create an email template using create_template() <https://docs.aws.amazon.com/boto3/latest/reference/services/ses/client/create_template.html>_.
  • List all email templates using list_templates() <https://docs.aws.amazon.com/boto3/latest/reference/services/ses/client/list_templates.html>_.
  • Retrieve an email template using get_template() <https://docs.aws.amazon.com/boto3/latest/reference/services/ses/client/get_template.html>_.
  • Update an email template using update_template() <https://docs.aws.amazon.com/boto3/latest/reference/services/ses/client/update_template.html>_.
  • Remove an email template using delete_template() <https://docs.aws.amazon.com/boto3/latest/reference/services/ses/client/delete_template.html>_.
  • Send a templated email using send_templated_email() <https://docs.aws.amazon.com/boto3/latest/reference/services/ses/client/send_templated_email.html>_.

Prerequisite tasks

To set up and run this example, you must first complete these tasks:

  • Configure your AWS credentials, as described in :doc:quickstart.

Create an email template

To create a template to send personalized email messages, use the CreateTemplate <https://docs.aws.amazon.com/ses/latest/APIReference/API_CreateTemplate.html>_ operation. The template can be used by any account authorized to send messages in the AWS Region to which the template is added.

.. note:: SES doesn't validate your HTML, so be sure that HtmlPart is valid before sending an email.

Example

.. code-block:: python

import boto3

# Create SES client
ses = boto3.client('ses')

response = ses.create_template(
  Template = {
    'TemplateName' : 'TEMPLATE_NAME',
    'SubjectPart'  : 'SUBJECT_LINE',
    'TextPart'     : 'TEXT_CONTENT',
    'HtmlPart'     : 'HTML_CONTENT'
  }
)


print(response)

Get an email template

To view the content for an existing email template including the subject line, HTML body, and plain text, use the GetTemplate <https://docs.aws.amazon.com/ses/latest/APIReference/API_GetTemplate.html>_ operation. Only TemplateName is required.

Example

.. code-block:: python

import boto3

# Create SES client
ses = boto3.client('ses')

response = ses.get_template(
  TemplateName = 'TEMPLATE_NAME'
)

print(response)

List all email templates

To retrieve a list of all email templates that are associated with your AWS account in the current AWS Region, use the ListTemplates <https://docs.aws.amazon.com/ses/latest/APIReference/API_ListTemplates.html>_ operation.

Example

.. code-block:: python

import boto3

# Create SES client
ses = boto3.client('ses')

response = ses.list_templates(
  MaxItems=10
)

print(response)

Update an email template

To change the content for a specific email template including the subject line, HTML body, and plain text, use the UpdateTemplate <https://docs.aws.amazon.com/ses/latest/APIReference/API_UpdateTemplate.html>_ operation.

Example

.. code-block:: python

import boto3

# Create SES client
ses = boto3.client('ses')

response = ses.update_template(
  Template={
    'TemplateName': 'TEMPLATE_NAME',
    'SubjectPart' : 'SUBJECT_LINE',
    'TextPart'    : 'TEXT_CONTENT',
    'HtmlPart'    : 'HTML_CONTENT'
  }
)

print(response)

Send an email with a template

To use a template to send an email to recipients, use the SendTemplatedEmail <https://docs.aws.amazon.com/ses/latest/APIReference/API_SendTemplatedEmail.html>__ operation.

Example

.. code-block:: python

import boto3

# Create SES client
ses = boto3.client('ses')

response = ses.send_templated_email(
  Source='EMAIL_ADDRESS',
  Destination={
    'ToAddresses': [
      'EMAIL_ADDRESS',
    ],
    'CcAddresses': [
      'EMAIL_ADDRESS',
    ]
  },
  ReplyToAddresses=[
    'EMAIL_ADDRESS',
  ],
  Template='TEMPLATE_NAME',
  TemplateData='{ \"REPLACEMENT_TAG_NAME\":\"REPLACEMENT_VALUE\" }'
)

print(response)