Module: AWSCDK::SES::EmailSendingEvent

Defined in:
ses/email_sending_event.rb

Overview

Email sending event.

Constant Summary collapse

SEND =
Deprecated.
Note:

Default:

The send request was successful and SES will attempt to deliver the message to the recipient's mail server.

(If account-level or global suppression is being used, SES will still count it as a send, but delivery is suppressed.)

Jsii::Enum.new("aws-cdk-lib.aws_ses.EmailSendingEvent", "SEND")
REJECT =
Deprecated.
Note:

Default:

SES accepted the email, but determined that it contained a virus and didn’t attempt to deliver it to the recipient’s mail server.

Jsii::Enum.new("aws-cdk-lib.aws_ses.EmailSendingEvent", "REJECT")
BOUNCE =
Deprecated.
Note:

Default:

(Hard bounce) The recipient's mail server permanently rejected the email.

(Soft bounces are only included when SES fails to deliver the email after retrying for a period of time.)

Jsii::Enum.new("aws-cdk-lib.aws_ses.EmailSendingEvent", "BOUNCE")
COMPLAINT =
Deprecated.
Note:

Default:

The email was successfully delivered to the recipient’s mail server, but the recipient marked it as spam.

Jsii::Enum.new("aws-cdk-lib.aws_ses.EmailSendingEvent", "COMPLAINT")
DELIVERY =
Deprecated.
Note:

Default:

SES successfully delivered the email to the recipient's mail server.

Jsii::Enum.new("aws-cdk-lib.aws_ses.EmailSendingEvent", "DELIVERY")
OPEN =
Deprecated.
Note:

Default:

The recipient received the message and opened it in their email client.

Jsii::Enum.new("aws-cdk-lib.aws_ses.EmailSendingEvent", "OPEN")
CLICK =
Deprecated.
Note:

Default:

The recipient clicked one or more links in the email.

Jsii::Enum.new("aws-cdk-lib.aws_ses.EmailSendingEvent", "CLICK")
RENDERING_FAILURE =
Deprecated.
Note:

Default:

The email wasn't sent because of a template rendering issue.

This event type can occur when template data is missing, or when there is a mismatch between template parameters and data. (This event type only occurs when you send email using the SendTemplatedEmail or SendBulkTemplatedEmail API operations.)

Jsii::Enum.new("aws-cdk-lib.aws_ses.EmailSendingEvent", "RENDERING_FAILURE")
DELIVERY_DELAY =
Deprecated.
Note:

Default:

The email couldn't be delivered to the recipient’s mail server because a temporary issue occurred.

Delivery delays can occur, for example, when the recipient's inbox is full, or when the receiving email server experiences a transient issue.

Jsii::Enum.new("aws-cdk-lib.aws_ses.EmailSendingEvent", "DELIVERY_DELAY")
SUBSCRIPTION =
Deprecated.
Note:

Default:

The email was successfully delivered, but the recipient updated their subscription preferences by clicking on an unsubscribe link as part of your subscription management.

Jsii::Enum.new("aws-cdk-lib.aws_ses.EmailSendingEvent", "SUBSCRIPTION")