Skip to content

List Custom Verification Email Templates

ses_list_custom_verification_email_templates R Documentation

Lists the existing custom verification email templates for your account in the current Amazon Web Services Region

Description

Lists the existing custom verification email templates for your account in the current Amazon Web Services Region.

For more information about custom verification email templates, see Using Custom Verification Email Templates in the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

Usage

ses_list_custom_verification_email_templates(NextToken, MaxResults)

Arguments

NextToken

An array the contains the name and creation time stamp for each template in your Amazon SES account.

MaxResults

The maximum number of custom verification email templates to return. This value must be at least 1 and less than or equal to 50. If you do not specify a value, or if you specify a value less than 1 or greater than 50, the operation returns up to 50 results.

Value

A list with the following syntax:

list(
  CustomVerificationEmailTemplates = list(
    list(
      TemplateName = "string",
      FromEmailAddress = "string",
      TemplateSubject = "string",
      SuccessRedirectionURL = "string",
      FailureRedirectionURL = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_custom_verification_email_templates(
  NextToken = "string",
  MaxResults = 123
)