CreateCustomVerificationEmailTemplateCommand

Creates a new custom verification email template.

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.

Example Syntax

Use a bare-bones client and the command you need to make an API call.

import { SESClient, CreateCustomVerificationEmailTemplateCommand } from "@aws-sdk/client-ses"; // ES Modules import
// const { SESClient, CreateCustomVerificationEmailTemplateCommand } = require("@aws-sdk/client-ses"); // CommonJS import
const client = new SESClient(config);
const input = { // CreateCustomVerificationEmailTemplateRequest
  TemplateName: "STRING_VALUE", // required
  FromEmailAddress: "STRING_VALUE", // required
  TemplateSubject: "STRING_VALUE", // required
  TemplateContent: "STRING_VALUE", // required
  SuccessRedirectionURL: "STRING_VALUE", // required
  FailureRedirectionURL: "STRING_VALUE", // required
};
const command = new CreateCustomVerificationEmailTemplateCommand(input);
const response = await client.send(command);
// {};

CreateCustomVerificationEmailTemplateCommand Input

Parameter
Type
Description
FailureRedirectionURL
Required
string | undefined

The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.

FromEmailAddress
Required
string | undefined

The email address that the custom verification email is sent from.

SuccessRedirectionURL
Required
string | undefined

The URL that the recipient of the verification email is sent to if his or her address is successfully verified.

TemplateContent
Required
string | undefined

The content of the custom verification email. The total size of the email must be less than 10 MB. The message body may contain HTML, with some limitations. For more information, see Custom Verification Email Frequently Asked Questions  in the Amazon SES Developer Guide.

TemplateName
Required
string | undefined

The name of the custom verification email template.

TemplateSubject
Required
string | undefined

The subject line of the custom verification email.

CreateCustomVerificationEmailTemplateCommand Output

Parameter
Type
Description
$metadata
Required
ResponseMetadata
Metadata pertaining to this request.

Throws

Name
Fault
Details
CustomVerificationEmailInvalidContentException
client

Indicates that custom verification email template provided content is invalid.

CustomVerificationEmailTemplateAlreadyExistsException
client

Indicates that a custom verification email template with the name you specified already exists.

FromEmailAddressNotVerifiedException
client

Indicates that the sender address specified for a custom verification email is not verified, and is therefore not eligible to send the custom verification email.

LimitExceededException
client

Indicates that a resource could not be created because of service limits. For a list of Amazon SES limits, see the Amazon SES Developer Guide .

SESServiceException
Base exception class for all service exceptions from SES service.