| To set up FormMail:
1. Create the form on your web page, with the following fields:
<form action="http://www.yourdomain.com/cgi-sys/FormMail.cgi" method="POST">
Name: <input type="text" name="visitor_name" value="Your Name"><br />
Email: <input type="text" name="email" value="Your Email"><br />
Message:<br /><textarea name="message" rows="5" cols="20">Your Message</textarea>
<input type="hidden" name="recipient" value="email@yourdomain.com">
<input type="hidden" name="subject" value="Feedback from web site">
<input type="hidden" name="redirect" value="http://www.yourdomain.com/thankyou.htm">
<input type="submit" name="submit" value="Submit This Form">
</form>
Remember to replace "yourdomain.com" with your actual domain name.
Please note that this is just a guide. You may add, modify or remove most fields and form elements as you wish.
2. Upload the web page and test the form. |