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

MailFromAttributes

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

A list of attributes that are associated with a MAIL FROM domain.

interface MailFromAttributes {
BehaviorOnMxFailure: BehaviorOnMxFailure;
MailFromDomain: string;
MailFromDomainStatus: MailFromDomainStatus;
}

§Properties

§
BehaviorOnMxFailure: BehaviorOnMxFailure
[src]

The action to take if the required MX record can't be found when you send an email. When you set this value to UseDefaultValue, the mail is sent using amazonses.com as the MAIL FROM domain. When you set this value to RejectMessage, the Amazon SES API v2 returns a MailFromDomainNotVerified error, and doesn't attempt to deliver the email.

These behaviors are taken when the custom MAIL FROM domain configuration is in the Pending, Failed, and TemporaryFailure states.

§
MailFromDomain: string
[src]

The name of a domain that an email identity uses as a custom MAIL FROM domain.

§
MailFromDomainStatus: MailFromDomainStatus
[src]

The status of the MAIL FROM domain. This status can have the following values:

  • PENDING – Amazon SES hasn't started searching for the MX record yet.
  • SUCCESS – Amazon SES detected the required MX record for the MAIL FROM domain.
  • FAILED – Amazon SES can't find the required MX record, or the record no longer exists.
  • TEMPORARY_FAILURE – A temporary issue occurred, which prevented Amazon SES from determining the status of the MAIL FROM domain.