Mailgun Integration - Configuration Docs

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

required fields are marked with an `*`
ParameterTypeDescription
api_keystring *
domainstring *
fromobject
└ emailstring *The email address to send from
└ name The name to send from
regionstring *

Example

{
  "api_key": "key-3ax6xnjp29jd6fds4gc373sgvjxteol0",
  "domain": "example.com",
  "from": {
    "email": "hello@example.com",
    "name": "Example"
  },
  "region": "us"
}

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 Mailgun button.
  5. Follow the on-screen instructions to complete the configuration.

Configure via API

You can also configure the integration using the API

Example

{
  "api_key": "key-3ax6xnjp29jd6fds4gc373sgvjxteol0",
  "domain": "example.com",
  "from": {
    "email": "hello@example.com",
    "name": "Example"
  },
  "region": "us"
}