Steps to making a form on your website where people can email you information:
- Copy the code below
- Replace the words in red with your domain name, page URL and your email
- Replace the words in bold blue with whatever you want that part of the form to say
- Save it as a .htm
- Upload and you are done
<html>
<head>
<title>FormMail Demo</title>
</head>
<body>
<form action="http://www.mydomain.com/cgi-sys/formmail.pl" method="post">
<input type="hidden" name="recipient" value="youremail@here.com">
<input type="hidden" name="subject" value="FormMail E-Mail">
Whatever you want to say here<br /><br />
<input type="text" name="email" size="20" value="Visitor E-Mail"><br />
<input type="text" name="tellme" size="20" value="Message"><br /><br />
<input type="submit" name="submit" value="E-Mail Me!">
<input type="hidden" name="redirect" value="http://www.yourdomain.com/yourredirectopageurlhere.html">
</form>
</body>
</html>