How do I set up FormMail?
To get the FormMail script working, you should use the following piece of code (which is only an example - you should therefore make corrections in the different fields):
<FORM method="post" action="http://www.your-domain.com/cgi-bin/FormMail.pl">
<input type="hidden" name="recipient" value="mail@your-domain.com">
<input type="hidden" name="subject" value="You can write in here the subject text">
<input type="hidden" name="redirect" value="http://www.domain.com/newpage.html">
Name:<INPUT TYPE="TEXT" VALUE="" NAME="First name" SIZE="20">
Last name:<INPUT TYPE="TEXT" VALUE="" NAME="Last name" SIZE="20">
Mail:<INPUT TYPE="TEXT" VALUE="" NAME="Mail" SIZE="20">
Comment:<TEXTAREA name="Comment" COLS="40" ROWS="7"> </TEXTAREA>
<INPUT TYPE="Reset" VALUE="Reset"><INPUT TYPE="Submit" VALUE="Submit">
</form>
Back