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.

ses logo
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 "string"
required

AWS Access Key ID

secret_key "string"
required

AWS Secret Key

region "string"
required

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]"
  }
}