Amazon SES Integration - Configuration Docs

To configure the Amazon SES integration, you'll need the following data:

required fields are marked with an `*`
ParameterTypeDescription
secret_keystring *AWS Secret Key
fromobject
└ emailstring *The email address to send from
└ name The name to send from
key_idstring *AWS Access Key ID
regionstring *AWS Region

Configure via Dashboard

The easiest way to configure this integration is through the MagicBell dashboard:

  1. Log in to your MagicBell dashboard.
  2. Navigate to Channels.
  3. Find and click on this channel name in the sidebar.
  4. Click the Configure Amazon SES button.
  5. Follow the on-screen instructions to complete the configuration.

Configure via API

You can also configure the integration using the API.

Example payload

{
  "from": {
    "email": "company@example.com",
    "name": "Company Name"
  },
  "key_id": "MY_FAKE_AWS_ACCESS_KEY_ID",
  "region": "eu-west-1",
  "secret_key": "MY_FAKE_AWS_SECRET_KEY"
}