Enbbox Docs

Email Providers

Configure email providers in Enbbox. Integration guides for SendGrid, Resend, Amazon SES, Postmark, and Mailgun with API key setup and template configuration.

Supported Providers

SendGrid

  1. Sign up at sendgrid.com
  2. Create an API key with Mail Send permission
  3. In Enbbox dashboard → IntegrationsSendGrid
  4. Enter your API key, from email, and sender name
  5. Test the connection
{
  "apiKey": "SG.xxxx...",
  "from": "[email protected]",
  "senderName": "Your App"
}

Resend

  1. Sign up at resend.com
  2. Get your API key from the dashboard
  3. Verify your sending domain
  4. Configure in Enbbox → IntegrationsResend

Amazon SES

  1. Set up SES in your AWS console
  2. Verify your sending domain or email
  3. Create IAM credentials with SES permissions
  4. Configure in Enbbox with your access key, secret, and region

Postmark

  1. Sign up at postmarkapp.com
  2. Get your Server API Token
  3. Configure in Enbbox → IntegrationsPostmark

Custom SMTP

For any email provider that supports SMTP:

{
  "host": "smtp.yourprovider.com",
  "port": 587,
  "user": "your-username",
  "password": "your-password",
  "from": "[email protected]",
  "secure": true
}

On this page