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

BulkEmailDestination

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

An array that contains one or more Destinations, as well as the tags and replacement data associated with each of those Destinations.

interface BulkEmailDestination {
Destination: Destination;
ReplacementTags?: MessageTag[] | null;
ReplacementTemplateData?: string | null;
}

§Properties

§
Destination: Destination
[src]
§
ReplacementTags?: MessageTag[] | null
[src]

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

§
ReplacementTemplateData?: string | null
[src]

A list of replacement values to apply to the template. This parameter is a JSON object, typically consisting of key-value pairs in which the keys correspond to replacement tags in the email template.