Pinpoint / Client / get_email_template

get_email_template#

Pinpoint.Client.get_email_template(**kwargs)#

Retrieves the content and settings of a message template for messages that are sent through the email channel.

See also: AWS API Documentation

Request Syntax

response = client.get_email_template(
    TemplateName='string',
    Version='string'
)
Parameters:
  • TemplateName (string) –

    [REQUIRED]

    The name of the message template. A template name must start with an alphanumeric character and can contain a maximum of 128 characters. The characters can be alphanumeric characters, underscores (_), or hyphens (-). Template names are case sensitive.

  • Version (string) –

    The unique identifier for the version of the message template to update, retrieve information about, or delete. To retrieve identifiers and other information for all the versions of a template, use the Template Versions resource.

    If specified, this value must match the identifier for an existing template version. If specified for an update operation, this value must match the identifier for the latest existing version of the template. This restriction helps ensure that race conditions don’t occur.

    If you don’t specify a value for this parameter, Amazon Pinpoint does the following:

    • For a get operation, retrieves information about the active version of the template.

    • For an update operation, saves the updates to (overwrites) the latest existing version of the template, if the create-new-version parameter isn’t used or is set to false.

    • For a delete operation, deletes the template, including all versions of the template.

Return type:

dict

Returns:

Response Syntax

{
    'EmailTemplateResponse': {
        'Arn': 'string',
        'CreationDate': 'string',
        'DefaultSubstitutions': 'string',
        'HtmlPart': 'string',
        'LastModifiedDate': 'string',
        'RecommenderId': 'string',
        'Subject': 'string',
        'tags': {
            'string': 'string'
        },
        'TemplateDescription': 'string',
        'TemplateName': 'string',
        'TemplateType': 'EMAIL'|'SMS'|'VOICE'|'PUSH'|'INAPP',
        'TextPart': 'string',
        'Version': 'string'
    }
}

Response Structure

  • (dict) –

    The request succeeded.

    • EmailTemplateResponse (dict) –

      Provides information about the content and settings for a message template that can be used in messages that are sent through the email channel.

      • Arn (string) –

        The Amazon Resource Name (ARN) of the message template.

      • CreationDate (string) –

        The date, in ISO 8601 format, when the message template was created.

      • DefaultSubstitutions (string) –

        The JSON object that specifies the default values that are used for message variables in the message template. This object is a set of key-value pairs. Each key defines a message variable in the template. The corresponding value defines the default value for that variable.

      • HtmlPart (string) –

        The message body, in HTML format, that’s used in email messages that are based on the message template.

      • LastModifiedDate (string) –

        The date, in ISO 8601 format, when the message template was last modified.

      • RecommenderId (string) –

        The unique identifier for the recommender model that’s used by the message template.

      • Subject (string) –

        The subject line, or title, that’s used in email messages that are based on the message template.

      • tags (dict) –

        A string-to-string map of key-value pairs that identifies the tags that are associated with the message template. Each tag consists of a required tag key and an associated tag value.

        • (string) –

          • (string) –

      • TemplateDescription (string) –

        The custom description of the message template.

      • TemplateName (string) –

        The name of the message template.

      • TemplateType (string) –

        The type of channel that the message template is designed for. For an email template, this value is EMAIL.

      • TextPart (string) –

        The message body, in plain text format, that’s used in email messages that are based on the message template.

      • Version (string) –

        The unique identifier, as an integer, for the active version of the message template, or the version of the template that you specified by using the version parameter in your request.

Exceptions

  • Pinpoint.Client.exceptions.BadRequestException

  • Pinpoint.Client.exceptions.InternalServerErrorException

  • Pinpoint.Client.exceptions.PayloadTooLargeException

  • Pinpoint.Client.exceptions.ForbiddenException

  • Pinpoint.Client.exceptions.NotFoundException

  • Pinpoint.Client.exceptions.MethodNotAllowedException

  • Pinpoint.Client.exceptions.TooManyRequestsException