How to correctly setup an Amazon SES integration
Amazon SES is a flexible, scalable, and cost-effective email sending service that enables developers to send mail from within any application. With MagicBell's Amazon SES integration, you can send notifications to your users' email addresses.
PUT
/integrations/ses
Schema Type:
"object"
Required Fields:
key_idsecret_keyregion
Properties
endpoint
"string"
HTTP endpoint to send requests to (testing only)
from
"object"
key_id
required"string"
AWS Access Key ID
secret_key
required"string"
AWS Secret Key
region
required"string"
AWS Region
Example Request
{
"key_id": "MY_FAKE_AWS_ACCESS_KEY_ID",
"secret_key": "MY_FAKE_AWS_SECRET_KEY",
"region": "eu-west-1",
"from": {
"name": "Person Name",
"email": "[email protected]"
}
}