docs/platform/integrations/email/webhook.mdx
Email Webhook lets Novu hand each email payload to an HTTP endpoint you control. Instead of calling a built-in ESP SDK, Novu POSTs the rendered message to your Webhook URL and signs the body with your HMAC secret.
Use this when you want Novu workflows and templates, but delivery goes through an internal service or a provider that is not listed in the Integrations Store.
POST JSON)For each email, Novu sends a POST request to your webhook URL with:
Content-Type: application/jsonX-Novu-Signature: <hmac-sha256-hex> of the raw JSON body, using your Secret Hmac KeyVerify the signature before processing the payload. Reject requests that do not match.
The JSON body includes the rendered email fields Novu already prepared for the subscriber (to, from, subject, html/text content, and related metadata).
<Note> Email Webhook is marked beta in Novu. Treat it as a custom delivery bridge and monitor your endpoint health. </Note>