Enbbox Docs

Email Webhook

Set up a custom email webhook integration in Enbbox. Route email notifications to any HTTP endpoint for custom processing.

Overview

The Email Webhook provider lets you send email notifications to any HTTP endpoint. Use this when your email provider isn't natively supported or you want to route emails through a custom service.

Setup

  1. Set up an HTTP endpoint that accepts POST requests with a JSON body containing:
    • to, from, subject, html, text
  2. In Enbbox: IntegrationsAdd ProviderEmailEmail Webhook
  3. Enter the Webhook URL, From Email, and optional Secret for HMAC verification
  4. Click Test ConnectionActivate

Request Format

Enbbox will POST to your endpoint:

{
  "to": "[email protected]",
  "from": "[email protected]",
  "subject": "Hello",
  "html": "<h1>Hello World</h1>",
  "text": "Hello World"
}

On this page