Form Mail Example

Steps to making a form on your website that will email you the information on it....

Note: If the recipient of the "Form Mail" is not on the same server you must contact support@macsp.com so the recipients email address, used in the Form Mail, can be put on the "White" list. This is to prevent "outsiders" from utilizing the "Form Mail" program on Software Products servers for nefarious purposes.


1. Copy the below code.
2. Replace the words in bold black with your domain name and your email address.
3. Replace the words in bold blue with whatever you want that part of the form to say.
4. Save it as a .html .
5. Upload and you are done.

If you copy and upload the code exactly as we have it below it will look like this....




<html>
<head>
<title>FormMail Demo</title>
</head>
<body>
<form action="http://www.mydomain.com/cgi-sys/FormMail.cgi" method="post">
<input type="hidden" name="recipient" value="youremail@here.com">
<input type="hidden" name="subject" value="FormMail E-Mail (This is what appears on the subject line of the sent email)">
Email Me! (or Whatever you want to say here)<br /><br />
<input type="text" name="email" size="20" value="Visitor email"><br />
<input type="text" name="tellme" size="20" value="Email content"><br /><br />
<input type="submit" name="submit" value="Email me!">
<input type="hidden" name="redirect" value="http://yourdomain.com/redirecto.html">
</form>
</body>
</html>