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

EmailTemplateContent

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

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

interface EmailTemplateContent {
Html?: string | null;
Subject?: string | null;
Text?: string | null;
}

§Properties

§
Html?: string | null
[src]

The HTML body of the email.

§
Subject?: string | null
[src]

The subject line of the email.

§
Text?: string | null
[src]

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