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

CampaignEmailMessage

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

Specifies the content and "From" address for an email message that's sent to recipients of a campaign.

interface CampaignEmailMessage {
Body?: string | null;
FromAddress?: string | null;
HtmlBody?: string | null;
Title?: string | null;
}

§Properties

§
Body?: string | null
[src]

The body of the email for recipients whose email clients don't render HTML content.

§
FromAddress?: string | null
[src]

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

§
HtmlBody?: string | null
[src]

The body of the email, in HTML format, for recipients whose email clients render HTML content.

§
Title?: string | null
[src]

The subject line, or title, of the email.