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

SendEmailRequest

import type { SendEmailRequest } from "https://aws-api.deno.dev/v0.3/services/pinpointemail.ts?docs=full";

A request to send an email message.

interface SendEmailRequest {
ConfigurationSetName?: string | null;
Content: EmailContent;
Destination: Destination;
EmailTags?: MessageTag[] | null;
FeedbackForwardingEmailAddress?: string | null;
FromEmailAddress?: string | null;
ReplyToAddresses?: string[] | null;
}

§Properties

§
ConfigurationSetName?: string | null
[src]

The name of the configuration set that you want to use when sending the email.

§

An object that contains the body of the message. You can send either a Simple message or a Raw message.

§
Destination: Destination
[src]

An object that contains the recipients of the email message.

§
EmailTags?: MessageTag[] | null
[src]

A list of tags, in the form of name/value pairs, to apply to an email that you send using the SendEmail operation. Tags correspond to characteristics of the email that you define, so that you can publish email sending events.

§
FeedbackForwardingEmailAddress?: string | null
[src]

The address that Amazon Pinpoint should send bounce and complaint notifications to.

§
FromEmailAddress?: string | null
[src]

The email address that you want to use as the "From" address for the email. The address that you specify has to be verified.

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

The "Reply-to" email addresses for the message. When the recipient replies to the message, each Reply-to address receives the reply.