User login

Instructions

To use Easy Form Mail script, you must be a member of this site.
Click here to create your membership now.
Divider
Step 1  

Create your form

Create your HTML form as you usually would. For example via Dreamweaver or some other HTML editor. You will need to make 1 very small changes to your form:

Form ACTION

Change the form method to "post" and the action to the location of your processor script:

<form action="/formmail/processor-0.3.php" method="post">

NB: You should use the path and name of the file on your server, if you are using a different version of the script the name will be different from this example.

     
Divider
     
Step Two  

Configure your form script

Use the Easy Formmail Script Configurator to create the Config file. When you download it, change name file to config.json

     
Divider
     
Step 3  

Load your form onto your site

Copy the configuration file and processor script generated by the Configurator and upload both files to your ‘formmail’ folder on your website. You are ready to go.

Testing/Debugging

If you are having a problem you can include a special hidden field called "debug" with a value of "true" in your form. This will tell the script to output debugging information and will let you know of any problem.

eg: <input type="hidden" name="debug" value="true">

Short complete example of working form

<form action="formmail/processor-0.3.php" method="post">
    <input type="hidden" name="form" value="form"/>
    <input type="text" name="testing" value="testing value" />
    <input type="hidden" name="debug" value="true">
    <input type="submit" value="submit" />
</form>