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

SimpleEmailPart

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

Specifies the subject or body of an email message, represented as textual email data and the applicable character set.

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

§Properties

§
Charset?: string | null
[src]

The applicable character set for the message content.

§
Data?: string | null
[src]

The textual data of the message content.