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

Represents textual data, plus an optional character set specification.

By default, the text must be 7-bit ASCII, due to the constraints of the SMTP protocol. If the text must contain any other characters, then you must also specify a character set. Examples include UTF-8, ISO-8859-1, and Shift_JIS.

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

§Properties

§
Charset?: string | null
[src]

The character set of the content.

§
Data: string
[src]

The textual data of the content.