by beepmateio on WordPress.org
Automatically send WordPress form submissions to WhatsApp instead of or alongside emails. Get instant notifications and respond to inquiries quickly.

Plugin settings page.
BeepMate connects your WordPress site’s forms directly to WhatsApp. Whenever a visitor submits a form on your website, you’ll receive an instant WhatsApp message with their information.
The plugin integrates with WordPress’s email system to capture form submissions and redirect them to WhatsApp using the BeepMate API. It works alongside your existing email notifications, ensuring you never miss an important message.
You do not need to configure SMTP or any mailer settings (unless you want to) – it works even without a mailer.
This plugin connects to BeepMate API (beepmate.io) to send form submission data to WhatsApp.
It sends form submissions including text content and any attachments to the BeepMate service whenever a form is submitted on your site.
This service is provided by BeepMate: Privacy Policy.
This plugin connects to BeepMate API (beepmate.io) to send form submission data to WhatsApp.
It sends form submissions including text content and any attachments to the BeepMate service whenever a form is submitted on your site.
This service is provided by BeepMate: Privacy Policy.
BeepMate intercepts WordPress emails at the PHPMailer level, right before they’re sent. When a form is submitted:
phpmailer_init to capture the email contentAll of this happens without modifying your existing forms or email system.
BeepMate API Key: Your unique API key from BeepMate that authorizes the connection.
User ID: The phone number (with country code, no spaces or symbols) that will receive the WhatsApp messages.
Redirect All Forms: When set to “Yes,” all form submissions will be sent to WhatsApp. When “No,” the plugin remains inactive.
API Method: The technical approach used to connect to the BeepMate API:
– wp_remote: The recommended method, works on most servers.
– file_get_contents: An alternative if wp_remote is disabled on your server.
Debug Mode: Enables detailed logging for troubleshooting.
If you’re experiencing issues with the plugin, you can enable Debug Mode in the settings. This will log detailed information about:
– Form interceptions
– Message preparation
– API calls
– Response codes and errors
Logs can be found in your WordPress debug log (if WP_DEBUG is enabled) or in your server’s PHP error log.
The plugin uses BeepMate’s API with the following structure:
– For text-only messages: https://beepmate.io/send?key=YOUR_KEY&id=YOUR_ID&msg=MESSAGE
– For messages with attachments: A POST request to https://beepmate.io/send with multipart/form-data
The plugin:
– Sanitizes all user input
– Uses WordPress nonces for form submissions
– Checks user capabilities before allowing settings changes
– Hides the API key in logs
– Properly escapes all output
Developers can hook into the plugin’s functionality using these functions:
– beepmate_whatsapp_forms_prepare_message: Formats message content for WhatsApp
– beepmate_whatsapp_forms_send_to_beepmate: Handles the API connection
– beepmate_whatsapp_forms_debug: Controls debug logging