SendGrid Integration - Configuration Docs

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

required fields are marked with an `*`
ParameterTypeDescription
reply_toobject
└ emailstring *The email address to reply to
└ name The name to reply to
api_keystring *The API key for Sendgrid
fromobject
└ emailstring *The email address to send from
└ name The name to send from

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 SendGrid 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

{
  "api_key": "SG.1234567890",
  "from": {
    "email": "company@example.com",
    "name": "Company Name"
  },
  "reply_to": {
    "email": "reply-to@example.com",
    "name": "Reply to Company"
  }
}