Hello @kijunraviele !
Hope you’re doing well today!
I’ve checked as we have integration with Zapier built in and it could potentially be used to send messages to WhatsApp, but unfortunately the direct integration isn’t available yet: https://zapier.com/apps/whatsapp-messenger/integrations
There is a workaround for this but it requires to use an additional service – you can find the details here: https://www.wati.io/blog/send-whatsapp-message-using-zapier/
Forminator forms can easily be integrated with Zapier out of the box, so you’d have to create the 2 sides of the connection. Here’s how that works on Forminator to Zapier’s side:
https://wpmudev.com/blog/zapier-wordpress-form-integrations/
https://wpmudev.com/docs/wpmu-dev-plugins/forminator/#zapier
There are also some videos on YouTube explaining how to use the Zapier integration in Forminator created by the users in case you prefer to watch those.
An alternative would be to do some custom coding, potentially you’d have to hire a developer for that, and code a solution that would connect to an API that allows sending to WhatsApp or sending text messages after a form is submitted.
The basic skeleton code you can use is this:
add_action('forminator_custom_form_submit_before_set_fields', function($entry, $form_id, $field_data_array) {
// $field_data_array will contain all of the submitted data
// you can use that data to connect to the external API and send messages
// each API has a different way of doing this, so you or the developer would need to read the documentation
}, 99, 3);
Best regards,
Pawel