SendGrid Integration - Configuration Docs

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

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

Example

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

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 Integrations.
  3. Find and click on this integration.
  4. Follow the on-screen instructions to complete the configuration.

Configure via API

You can also configure the integration using the API

Example

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