Lýsing
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:
- Listen Mode – Turn on „Listen Mode“ to discover all sources calling
wp_mail()on your site. - Submit test forms – Go to your forms and submit test entries. The plugin detects and registers each source.
- Enable webhooks per source – Choose which sources should forward data to your webhook URL.
- Turn off Listen Mode – Only the selected sources will trigger webhooks, with minimal overhead.
Features:
- Universal interception via
wp_mail()filter – works with any plugin - Auto-discovery of email sources using backtrace analysis
- Per-source webhook toggle with individual URL configuration
- Structured JSON payload with parsed form fields
- Complete webhook log with payload viewer
- Test webhook functionality
- Automatic log cleanup with configurable retention
- Zero impact when disabled – no hooks attached
- SMTP plugin compatible (WP Mail SMTP, Post SMTP, etc.)
JSON 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"
}
}
Uppsetning
- Upload the
lagoona-webhooksfolder to/wp-content/plugins/. - Activate the plugin through the ‘Plugins’ menu in WordPress.
- Go to Lagoona Webhooks in the admin menu.
- Configure your default webhook URL in the Settings tab.
- Turn on Listen Mode and submit test forms to discover sources.
- Enable webhooks for the sources you want.
SOS
-
Does this work with any form plugin?
-
Yes. Lagoona Webhooks intercepts
wp_mail(), which is used by virtually all WordPress form plugins to send notifications. It has been tested with Contact Form 7, Fluent Forms, JetFormBuilder, WPForms, and more. -
Does it work with SMTP plugins?
-
Yes. SMTP plugins like WP Mail SMTP modify how emails are delivered but they do not change how
wp_mail()is called. Lagoona Webhooks hooks intowp_mail()before the SMTP plugin processes the email. -
Does it modify or block emails?
-
No. The plugin only reads the email data and forwards it to your webhook. The original email is never modified or blocked.
-
What webhook services are supported?
-
Any service that accepts HTTP POST requests with JSON body, including Make (Integromat), Zapier, n8n, Pabbly, custom APIs, and more.
-
Does it slow down my site?
-
When Listen Mode is off and no sources are active, the plugin has zero overhead. When active, it only intercepts
wp_mail()calls with minimal processing.
Umsagnir
There are no reviews for this plugin.
Þátttakendur & höfundar
“Lagoona Webhooks – Send Form Submissions to Any Webhook” er opinn hugbúnaður. Eftirfarandi aðilar hafa lagt sitt af mörkum við smíði þessarar viðbótar.
HöfundarTranslate “Lagoona Webhooks – Send Form Submissions to Any Webhook” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Breytingarsaga
1.0.0
- Initial release.
- Listen Mode for source discovery.
- Per-source webhook toggle.
- JSON payload with parsed fields.
- Webhook log with payload viewer.
- Test webhook functionality.
- Automatic log cleanup.
