Form Submissions on external hosted site

You need a server side script such as php, cold fusion, or asp.

On your keyboard… (assuming US Keyboard)… locate the highlighted key.

Within Webflow…

Make the Form Wrapper the current element / selected element.

Then select the Settings Tab.

You should see Form Wrapper Settings on the right panel.

Locate the Action input field…

Assuming you are using PHP… and the PHP script will be named “sendmsg.php”…

select the highlighted key on the keyboard… then enter the name of the posting script.

the result will be `sendmsg.php


and click out of the field.

If you didn’t do it correctly… the field value will change to something like http://sendmsg.php

which will of course be invalid.

The php script (sendmsg.php) will receive and process the posted form data.

You need to validate the incoming data because spammers will bypass the form
**and call the php script directly. It doesn’t matter you use a captcha script to some interaction trick. **

After validation… use a good mailing script like phpmailer (don’t use the php mail function)
and send message to 1 or more email recipient addresses.