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/ses.ts?docs=full";

The content of the email, composed of a subject line, an HTML part, and a text-only part.

interface Template {
HtmlPart?: string | null;
SubjectPart?: string | null;
TemplateName: string;
TextPart?: string | null;
}

§Properties

§
HtmlPart?: string | null
[src]

The HTML body of the email.

§
SubjectPart?: string | null
[src]

The subject line of the email.

§
TemplateName: string
[src]

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

§
TextPart?: string | null
[src]

The email body that will be visible to recipients whose email clients do not display HTML.