{"id":283676,"date":"2026-05-29T21:07:49","date_gmt":"2026-05-29T21:07:49","guid":{"rendered":"https:\/\/wordpress.org\/plugins\/lagoona-webhooks\/"},"modified":"2026-05-29T21:07:20","modified_gmt":"2026-05-29T21:07:20","slug":"lagoona-webhooks","status":"publish","type":"plugin","link":"https:\/\/es-ar.wordpress.org\/plugins\/lagoona-webhooks\/","author":23455807,"comment_status":"closed","ping_status":"closed","template":"","meta":{"version":"1.0.1","stable_tag":"1.0.1","tested":"6.9.4","requires":"6.2","requires_php":"7.4","requires_plugins":null,"header_name":"Lagoona Webhooks \u2013 Send Form Submissions to Any Webhook","header_author":"Lagoona","header_description":"Send WordPress form submissions and wp_mail() data to webhook endpoints like Make, Zapier, n8n, or custom APIs.","assets_banners_color":"d6c1cf","last_updated":"2026-05-29 21:07:20","external_support_url":"","external_repository_url":"","donate_link":"","header_plugin_uri":"","header_author_uri":"https:\/\/lagoona.io","rating":0,"author_block_rating":0,"active_installs":0,"downloads":35,"num_ratings":0,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq","changelog"],"tags":{"1.0.1":{"tag":"1.0.1","author":"pablocantu","date":"2026-05-29 21:07:20"}},"upgrade_notice":[],"ratings":[],"assets_icons":{"icon-128x128.gif":{"filename":"icon-128x128.gif","revision":3554277,"resolution":"128x128","location":"assets","locale":"","width":128,"height":128}},"assets_banners":{"banner-1544x500.png":{"filename":"banner-1544x500.png","revision":3554280,"resolution":"1544x500","location":"assets","locale":"","width":1544,"height":500},"banner-772x250.png":{"filename":"banner-772x250.png","revision":3554280,"resolution":"772x250","location":"assets","locale":"","width":772,"height":250}},"assets_blueprints":{},"all_blocks":[],"tagged_versions":["1.0.1"],"block_files":[],"assets_screenshots":[],"screenshots":[]},"plugin_section":[],"plugin_tags":[569,601,1118,15439,6695],"plugin_category":[41,42],"plugin_contributors":[265012],"plugin_business_model":[],"class_list":["post-283676","plugin","type-plugin","status-publish","hentry","plugin_tags-automation","plugin_tags-forms","plugin_tags-json","plugin_tags-webhook","plugin_tags-wp_mail","plugin_category-communication","plugin_category-contact-forms","plugin_contributors-pablocantu","plugin_committers-pablocantu"],"banners":{"banner":"https:\/\/ps.w.org\/lagoona-webhooks\/assets\/banner-772x250.png?rev=3554280","banner_2x":"https:\/\/ps.w.org\/lagoona-webhooks\/assets\/banner-1544x500.png?rev=3554280","banner_rtl":false,"banner_2x_rtl":false},"icons":{"svg":false,"icon":"https:\/\/ps.w.org\/lagoona-webhooks\/assets\/icon-128x128.gif?rev=3554277","icon_2x":false,"generated":false},"screenshots":[],"raw_content":"<!--section=description-->\n<p>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.<\/p>\n\n<p><strong>How it works:<\/strong><\/p>\n\n<ol>\n<li><strong>Listen Mode<\/strong> \u2013 Turn on \"Listen Mode\" to discover all sources calling <code>wp_mail()<\/code> on your site.<\/li>\n<li><strong>Submit test forms<\/strong> \u2013 Go to your forms and submit test entries. The plugin detects and registers each source.<\/li>\n<li><strong>Enable webhooks per source<\/strong> \u2013 Choose which sources should forward data to your webhook URL.<\/li>\n<li><strong>Turn off Listen Mode<\/strong> \u2013 Only the selected sources will trigger webhooks, with minimal overhead.<\/li>\n<\/ol>\n\n<p><strong>Features:<\/strong><\/p>\n\n<ul>\n<li>Universal interception via <code>wp_mail()<\/code> filter \u2013 works with any plugin<\/li>\n<li>Auto-discovery of email sources using backtrace analysis<\/li>\n<li>Per-source webhook toggle with individual URL configuration<\/li>\n<li>Structured JSON payload with parsed form fields<\/li>\n<li>Complete webhook log with payload viewer<\/li>\n<li>Test webhook functionality<\/li>\n<li>Automatic log cleanup with configurable retention<\/li>\n<li>Zero impact when disabled \u2013 no hooks attached<\/li>\n<li>SMTP plugin compatible (WP Mail SMTP, Post SMTP, etc.)<\/li>\n<\/ul>\n\n<p><strong>JSON Payload Example:<\/strong><\/p>\n\n<pre><code>{\n    \"plugin\": \"lagoona-webhooks\",\n    \"site_url\": \"https:\/\/example.com\",\n    \"timestamp\": \"2026-02-14T10:30:00-06:00\",\n    \"source\": {\n        \"name\": \"Contact Form 7\",\n        \"slug\": \"contact-form-7\"\n    },\n    \"email\": {\n        \"to\": [\"admin@example.com\"],\n        \"subject\": \"New contact form submission\",\n        \"body\": \"Name: John...\"\n    },\n    \"parsed_fields\": {\n        \"name\": \"John Doe\",\n        \"email\": \"john@example.com\"\n    }\n}\n<\/code><\/pre>\n\n<!--section=installation-->\n<ol>\n<li>Upload the <code>lagoona-webhooks<\/code> folder to <code>\/wp-content\/plugins\/<\/code>.<\/li>\n<li>Activate the plugin through the 'Plugins' menu in WordPress.<\/li>\n<li>Go to <strong>Lagoona Webhooks<\/strong> in the admin menu.<\/li>\n<li>Configure your default webhook URL in the Settings tab.<\/li>\n<li>Turn on Listen Mode and submit test forms to discover sources.<\/li>\n<li>Enable webhooks for the sources you want.<\/li>\n<\/ol>\n\n<!--section=faq-->\n<dl>\n<dt id=\"does%20this%20work%20with%20any%20form%20plugin%3F\"><h3>Does this work with any form plugin?<\/h3><\/dt>\n<dd><p>Yes. Lagoona Webhooks intercepts <code>wp_mail()<\/code>, 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.<\/p><\/dd>\n<dt id=\"does%20it%20work%20with%20smtp%20plugins%3F\"><h3>Does it work with SMTP plugins?<\/h3><\/dt>\n<dd><p>Yes. SMTP plugins like WP Mail SMTP modify how emails are delivered but they do not change how <code>wp_mail()<\/code> is called. Lagoona Webhooks hooks into <code>wp_mail()<\/code> before the SMTP plugin processes the email.<\/p><\/dd>\n<dt id=\"does%20it%20modify%20or%20block%20emails%3F\"><h3>Does it modify or block emails?<\/h3><\/dt>\n<dd><p>No. The plugin only reads the email data and forwards it to your webhook. The original email is never modified or blocked.<\/p><\/dd>\n<dt id=\"what%20webhook%20services%20are%20supported%3F\"><h3>What webhook services are supported?<\/h3><\/dt>\n<dd><p>Any service that accepts HTTP POST requests with JSON body, including Make (Integromat), Zapier, n8n, Pabbly, custom APIs, and more.<\/p><\/dd>\n<dt id=\"does%20it%20slow%20down%20my%20site%3F\"><h3>Does it slow down my site?<\/h3><\/dt>\n<dd><p>When Listen Mode is off and no sources are active, the plugin has zero overhead. When active, it only intercepts <code>wp_mail()<\/code> calls with minimal processing.<\/p><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>1.0.0<\/h4>\n\n<ul>\n<li>Initial release.<\/li>\n<li>Listen Mode for source discovery.<\/li>\n<li>Per-source webhook toggle.<\/li>\n<li>JSON payload with parsed fields.<\/li>\n<li>Webhook log with payload viewer.<\/li>\n<li>Test webhook functionality.<\/li>\n<li>Automatic log cleanup.<\/li>\n<\/ul>","raw_excerpt":"Intercept form submissions from any plugin via wp_mail() and forward them as structured JSON to any webhook URL.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/es-ar.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/283676","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/es-ar.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/es-ar.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/es-ar.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=283676"}],"author":[{"embeddable":true,"href":"https:\/\/es-ar.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/pablocantu"}],"wp:attachment":[{"href":"https:\/\/es-ar.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=283676"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/es-ar.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=283676"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/es-ar.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=283676"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/es-ar.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=283676"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/es-ar.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=283676"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/es-ar.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=283676"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}