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

Body

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

Represents the body of the email message.

interface Body {
Html?: Content | null;
Text?: Content | null;
}

§Properties

§
Html?: Content | null
[src]

An object that represents the version of the message that is displayed in email clients that support HTML. HTML messages can include formatted text, hyperlinks, images, and more.

§
Text?: Content | null
[src]

An object that represents the version of the message that is displayed in email clients that don't support HTML, or clients where the recipient has disabled HTML rendering.