How to send email with AWS SES

Knock integrates with AWS Simple Email Service (SES) to send email notifications to your users.

In this guide you'll learn how to get started sending transactional email notifications with SES through Knock. We also cover provider configuration and additional data you can pass through to SES.

Features

  • Attachments support
  • Link and open tracking
  • Per environment configuration
  • Sandbox mode

Getting started

You'll need to take the following steps in AWS before you can configure your SES channel within Knock.

  1. Verify a "From" address within AWS. You'll need to do this before sending emails via SES through Knock.
  2. Choose and configure an AWS Authentication Scheme. To integrate with SES from the Knock dashboard, you can use cess Management (IAM) User Access Keys, or to improve security delegate a role to Knock using External ID-based authentication.

Once you've completed both of those steps, you'll be able to configure an AWS SES channel in the Knock dashboard under the Integrations > Channels section.

1. Verify a "From" address within AWS SES

You'll need to verify the "From" email address you plan on using to send emails with AWS if you haven't already. To do so, follow the steps outlined in AWS's guide to creating and verifying an email address identity.

2. Choose an AWS Authentication Scheme

Knock supports two authentication schemes with AWS SES:

  1. AWS User Access Key and Secret Access Key authentication
  2. Delegate a role in your AWS account to Knock, secured with an External ID

Option 1: Create an AWS IAM User with security credentials

To send notifications via AWS SES using an IAM User, Knock requires the access key ID and a secret access key of an AWS user with SES send permissions. (Specifically, the ses:SendEmail and ses:SendRawEmail permissions.)

If you don't already have a user with send permissions, you can create an IAM user in AWS to use with the Knock API. You can learn more about creating IAM users in AWS here.

Once you've created your new IAM user, you'll need to provision them with the policy below.

Now that you have an AWS user created and provisioned with SES send access, grab the access key ID and a secret access key of the user—we'll use these later when configuring the SES channel within Knock.

Option 2: Create an AWS IAM Role with a trust policy for Knock

To send notifications via AWS SES using an IAM Role:

  1. Create a new AWS Role:

    • For "Trusted Entity Type" choose "AWS Account"
    • Select "Another AWS account" and put "496685847699" in the Account ID
    • Check "Require external ID" and enter the ID of the channel you created

    How Knock works diagram

  2. Attach the following permission policy to that role

  3. Use that role's ARN when configuring your AWS SES channel in Knock

3. Configuring SES in Knock

Now that you have a verified "From" address and either an AWS User's credentials or an AWS IAM Role to delegate to Knock, you're ready to configure your SES channel within Knock.

Here are a few other things to keep in mind once you have your SES channel configured in Knock:

  • SES sandbox mode. By default, AWS places all new accounts in the SES sandbox. While your account is in the sandbox, you can only send emails to verified email address—keep this in mind if you're testing in development before you've moved your account out of the SES sandbox. For more information on the SES sandbox and how to move your account out of it, see the SES sandbox documentation.
  • Deliverability tracking. We cannot currently track deliverability through SES channels. This means that all notifications sent through SES will show up as "Sent" in the Knock messages log, but not "Delivered".

Provider configuration

Access key IDstring*The access key ID from your AWS account
Secret access keystring*The secret access key from your AWS account
AWS regionstring*The region your AWS account is in
Open trackingbooleanShould the provider track opens on their service?
Link trackingbooleanShould the provider track link clicks on their service?
From email addressstring | liquid*The sender email address (can use Liquid tags)
From namestring | liquidThe sender name (can use Liquid tags)

Environment default settings

The following fields are optional and if set, will be applied to all email messages sent via this channel within the environment:

Reply-to addressstring | liquidThe reply-to email address (can use Liquid tags)
CC addressstring | liquidThe cc email address (can use Liquid tags)
BCC addressstring | liquidThe bcc email address (can use Liquid tags)
JSON overridesstring | liquidProvider API's paramater overrides

Additional data sent

Knock sends the following attributes along with your emails (all as Tags):

  • Sender: always set to knock.app
  • knock_message_id: the ID of the message this email is associated with
  • knock_workflow: the key of the workflow this message was generated from
  • knock_recipient_id: the ID of your recipient

You can learn about the role of these SES attributes in the AWS Simple Email Service (SES) API documentation.

🔦
Keep in mind that AWS SES tags can be up to 256 characters long of only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-). If your knock_recipient_id does not meet these requirements, Knock will truncate knock_recipient_id to 256 characters and remove any prohibited characters.
Check out the AWS Docs for more information.

Recipient data requirements

In order to send an email notification you'll need a valid email property set on your recipient.