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

Represents the body of the message. You can specify text, HTML, or both. If you use both, then the message should display correctly in the widest variety of email clients.

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

§Properties

§
Html?: Content | null
[src]

The content of the message, in HTML format. Use this for email clients that can process HTML. You can include clickable links, formatted text, and much more in an HTML message.

§
Text?: Content | null
[src]

The content of the message, in text format. Use this for text-based email clients, or clients on high-latency networks (such as mobile devices).