Form to point at my own mailserver

Hi @moffegreven, thanks for the info.

Webflow allows to change the Action field of a form, to point to an external script url, or to some third party mail service, like mailchimp.

In the Action field in webflow, set that to: http://pmleng.se/mailscript.php

Set the Method in form settings to POST

When designing the Form input fields, give each form input a unique Name. The Name field will be the name of the Post variable that can be accessed in PHP.

There are many script examples on the web that show how to save simple form data to a mySQL server.

When the PHP script file is run, it can read the form fields as Post variables and you could:

  1. save the data to mySQL (as an example) and
  2. send an email notification with the form data using something like php mail function.

The Form that the site visitor fills out, should be on the same server where the script is hosted, and using same domain name.

You will probably need to get some developer help with the script part.

Making the form settings in Webflow is quick and easy, but we do not support external scripts etc.

My suggestion is to dive in and start making it. It is ok to make a mistake and change things quickly.

I hope this helps!