Lagoona Webhooks is a universal webhook forwarder for WordPress. It intercepts emails sent by any form plugin (Contact Form 7, Fluent Forms, JetFormBuilder, WPForms, Gravity Forms, etc.) and forwards the form data as structured JSON to your webhook endpoint.
How it works:
wp_mail() on your site.Features:
wp_mail() filter – works with any pluginJSON Payload Example:
{
"plugin": "lagoona-webhooks",
"site_url": "https://example.com",
"timestamp": "2026-02-14T10:30:00-06:00",
"source": {
"name": "Contact Form 7",
"slug": "contact-form-7"
},
"email": {
"to": ["admin@example.com"],
"subject": "New contact form submission",
"body": "Name: John..."
},
"parsed_fields": {
"name": "John Doe",
"email": "john@example.com"
}
}