Skip to main content

Amazon SES Connector

Amazon SES Send Emails through Amazon (AWS) SES

Connections

AWS Role ARN

Connect to AWS using an assumed role

To enable the IAM role authentication begin by logging into the AWS Console and navigate to Identity and Access Management (IAM).

To create a user and generate credentials:

  1. Navigate to Users and select Create User.
  • Provide a User name and check the box providing them user access to the AWS Management Console if needed.
  • Once completed with the User creation, copy the ARN provided in the summary for a later step.
  1. To obtain the ARN for an existing User, click on the designated username from the Users page and the ARN will be provided in the summary section.

  2. From the summary section, select Create access key

  • Select Third-party service as the access key type and select next.
  • Set a description and select create access key.
  • Copy the Access Key and Secret access key and enter those into the connection configuration of your integration along with the ARN.

To create and assign a user a role:

  1. Navigate to Roles and select Create Role.
  • Select Custom Trust Policy for the Trusted entity types
  • Copy the following statement into the statement console. Making sure to replace the ARN with the user's actual ARN from the previous section
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"AWS": "ARN"
},
"Action": "sts:AssumeRole"
}
]
}
  • When adding permissions provide the AmazonSESFullAccess permission
  • Complete remaining steps and select Create Role
InputCommentsDefault
Role ARNAn AWS IAM Role ARN
Access Key IDAn AWS IAM Access Key ID
Secret Access KeyAn AWS IAM Secret Access Key
External IDProvides enhanced security measures to the connection. Optional, but recommended. Please check AWS docs for more information.

AWS SES Access Key and Secret

Authenticates requests to Amazon SES using an API Key and API Secret

An AWS IAM access key pair is required to interact with Amazon SES. Make sure that the key pair you generate in AWS has proper permissions to the SES resources you want to access. Read about Amazon SES IAM policies in the AWS docs.

InputCommentsDefault
Access Key IDAn AWS IAM Access Key ID
Secret Access KeyAn AWS IAM Secret Access Key

Actions

List Identities

List Identities available in Amazon SES

InputCommentsDefault
AWS RegionAWS provides services in multiple regions, like us-west-2 or eu-west-1.
Identity TypeProvide the type of identity you want to list.EmailAddress
Next TokenSpecify the pagination token that's returned by a previous request to retrieve the next page of results
Connection

Send Email

Send an email through Amazon SES

InputCommentsDefault
AWS RegionAWS provides services in multiple regions, like us-west-2 or eu-west-1.
To AddressThe destination for this email. The recipients to place on the To: line of the message.
Cc AddressThe destination for this email. The recipients to place on the CC: line of the message.
Bcc AddressThe destination for this email. The recipients to place on the BCC: line of the message.
Sender EmailThe email address that is sending the email. This email address must be either individually verified with Amazon SES, or from a domain that has been verified with Amazon SES.
Reply ToThe reply-to email address(es) for the message. If the recipient replies to the message, each reply-to address will receive the reply. This email address must be either individually verified with Amazon SES, or from a domain that has been verified with Amazon SES.
SubjectThe subject of the message: A short summary of the content, which will appear in the recipient's inbox.
TextThe content of the message, in text format. Use this for text-based email clients, or clients on high-latency networks (such as mobile devices).
HtmlThe content of the message, in HTML format. Use this for email clients that can process HTML. You can include clickable links, formatted text, and much more in an HTML message.
AttachmentsSpecify a file name as the key (i.e. 'my-file.pdf'), and the file as the value
Connection