SendGrid Integration - Configuration Docs
To configure the SendGrid integration, you'll need the following data:
Parameter | Type | Description |
---|---|---|
api_key | string * | The API key for Sendgrid |
from | object | |
string * | The email address to send from | |
└ name | The name to send from | |
reply_to | object | |
string * | 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:
- 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
{
"api_key": "SG.1234567890",
"from": {
"email": "company@example.com",
"name": "Company Name"
},
"reply_to": {
"email": "reply-to@example.com",
"name": "Reply to Company"
}
}