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

SendBounceRequest

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

Represents a request to send a bounce message to the sender of an email you received through Amazon SES.

interface SendBounceRequest {
BouncedRecipientInfoList: BouncedRecipientInfo[];
BounceSender: string;
BounceSenderArn?: string | null;
Explanation?: string | null;
MessageDsn?: MessageDsn | null;
OriginalMessageId: string;
}

§Properties

§
BouncedRecipientInfoList: BouncedRecipientInfo[]
[src]

A list of recipients of the bounced message, including the information required to create the Delivery Status Notifications (DSNs) for the recipients. You must specify at least one BouncedRecipientInfo in the list.

§
BounceSender: string
[src]

The address to use in the "From" header of the bounce message. This must be an identity that you have verified with Amazon SES.

§
BounceSenderArn?: string | null
[src]

This parameter is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to use the address in the "From" header of the bounce. For more information about sending authorization, see the Amazon SES Developer Guide.

§
Explanation?: string | null
[src]

Human-readable text for the bounce message to explain the failure. If not specified, the text will be auto-generated based on the bounced recipient information.

§
MessageDsn?: MessageDsn | null
[src]

Message-related DSN fields. If not specified, Amazon SES will choose the values.

§
OriginalMessageId: string
[src]

The message ID of the message to be bounced.