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

Template

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

An object that defines the email template to use for an email message, and the values to use for any message variables in that template. An email template is a type of message template that contains content that you want to define, save, and reuse in email messages that you send.

interface Template {
TemplateArn?: string | null;
TemplateData?: string | null;
TemplateName?: string | null;
}

§Properties

§
TemplateArn?: string | null
[src]

The Amazon Resource Name (ARN) of the template.

§
TemplateData?: string | null
[src]

An object that defines the values to use for message variables in the template. This object is a set of key-value pairs. Each key defines a message variable in the template. The corresponding value defines the value to use for that variable.

§
TemplateName?: string | null
[src]

The name of the template. You will refer to this name when you send email using the SendTemplatedEmail or SendBulkTemplatedEmail operations.