Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UpdateCustomVerificationEmailTemplateRequest

import type { UpdateCustomVerificationEmailTemplateRequest } from "https://aws-api.deno.dev/v0.3/services/ses.ts?docs=full";

Represents a request to update an existing custom verification email template.

interface UpdateCustomVerificationEmailTemplateRequest {
FailureRedirectionURL?: string | null;
FromEmailAddress?: string | null;
SuccessRedirectionURL?: string | null;
TemplateContent?: string | null;
TemplateName: string;
TemplateSubject?: string | null;
}

§Properties

§
FailureRedirectionURL?: string | null
[src]

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

§
FromEmailAddress?: string | null
[src]

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

§
SuccessRedirectionURL?: string | null
[src]

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

§
TemplateContent?: string | null
[src]

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: string
[src]

The name of the custom verification email template that you want to update.

§
TemplateSubject?: string | null
[src]

The subject line of the custom verification email.