Amazon SES Integration - Configuration Docs
To configure the Amazon SES integration, you'll need the following data:
Parameter | Type | Description |
---|---|---|
key_id | string * | AWS Access Key ID |
region | string * | AWS Region |
secret_key | string * | AWS Secret Key |
from | object | |
string * | The email address to send from | |
└ name | The name to send from |
Example
{
"from": {
"email": "person@example.com",
"name": "Person Name"
},
"key_id": "MY_FAKE_AWS_ACCESS_KEY_ID",
"region": "eu-west-1",
"secret_key": "MY_FAKE_AWS_SECRET_KEY"
}
Configure via Dashboard
The easiest way to configure this integration is through the MagicBell dashboard:
- Log in to your MagicBell dashboard.
- Navigate to Integrations.
- Find and click on this integration.
- Follow the on-screen instructions to complete the configuration.

Configure via API
You can also configure the integration using the API
Example
{
"from": {
"email": "person@example.com",
"name": "Person Name"
},
"key_id": "MY_FAKE_AWS_ACCESS_KEY_ID",
"region": "eu-west-1",
"secret_key": "MY_FAKE_AWS_SECRET_KEY"
}