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

Content

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

An object that represents the content of the email, and optionally a character set specification.

interface Content {
Charset?: string | null;
Data: string;
}

§Properties

§
Charset?: string | null
[src]

The character set for the content. Because of the constraints of the SMTP protocol, Amazon SES uses 7-bit ASCII by default. If the text includes characters outside of the ASCII range, you have to specify a character set. For example, you could specify UTF-8, ISO-8859-1, or Shift_JIS.

§
Data: string
[src]

The content of the message itself.