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

EmailMessage

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

Specifies the default settings and content for a one-time email message that's sent directly to an endpoint.

interface EmailMessage {
Body?: string | null;
FeedbackForwardingAddress?: string | null;
FromAddress?: string | null;
RawEmail?: RawEmail | null;
ReplyToAddresses?: string[] | null;
SimpleEmail?: SimpleEmail | null;
Substitutions?: {
[key: string]: string[] | null | undefined;
}
| null;
}

§Properties

§
Body?: string | null
[src]

The body of the email message.

§
FeedbackForwardingAddress?: string | null
[src]

The email address to forward bounces and complaints to, if feedback forwarding is enabled.

§
FromAddress?: string | null
[src]

The verified email address to send the email message from. The default value is the FromAddress specified for the email channel.

§
RawEmail?: RawEmail | null
[src]

The email message, represented as a raw MIME message.

§
ReplyToAddresses?: string[] | null
[src]

The reply-to email address(es) for the email message. If a recipient replies to the email, each reply-to address receives the reply.

§
SimpleEmail?: SimpleEmail | null
[src]

The email message, composed of a subject, a text part, and an HTML part.

§
Substitutions?: {
[key: string]: string[] | null | undefined;
}
| null
[src]

The default message variables to use in the email message. You can override the default variables with individual address variables.