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
- Set up an HTTP endpoint that accepts
POSTrequests with a JSON body containing:to,from,subject,html,text
- In Enbbox: Integrations → Add Provider → Email → Email Webhook
- Enter the Webhook URL, From Email, and optional Secret for HMAC verification
- Click Test Connection → Activate
Request Format
Enbbox will POST to your endpoint:
{
"to": "[email protected]",
"from": "[email protected]",
"subject": "Hello",
"html": "<h1>Hello World</h1>",
"text": "Hello World"
}