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

BouncedRecipientInfo

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

Recipient-related information to include in the Delivery Status Notification (DSN) when an email that Amazon SES receives on your behalf bounces.

For information about receiving email through Amazon SES, see the Amazon SES Developer Guide.

interface BouncedRecipientInfo {
BounceType?: BounceType | null;
Recipient: string;
RecipientArn?: string | null;
RecipientDsnFields?: RecipientDsnFields | null;
}

§Properties

§
BounceType?: BounceType | null
[src]

The reason for the bounce. You must provide either this parameter or RecipientDsnFields.

§
Recipient: string
[src]

The email address of the recipient of the bounced email.

§
RecipientArn?: 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 receive email for the recipient of the bounced email. For more information about sending authorization, see the Amazon SES Developer Guide.

§
RecipientDsnFields?: RecipientDsnFields | null
[src]

Recipient-related DSN fields, most of which would normally be filled in automatically when provided with a BounceType. You must provide either this parameter or BounceType.