|
|
Instructions
 |
|
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.2.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. |
| |
|
|
 |
| |
|
|
 |
|
Configure your form script
Use the Easy Formmail Script Configurator to create the Config file. |
| |
|
|
 |
| |
|
|
 |
|
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"> |
| |
|
|
|