FormMail 1.6 - HTML Form to E-Mail Gateway

Please contact support@atlantisnet.com before attempting to use FormMail.  Your domain name needs to be registered with the service before you can use it.
 
Syntax:
<form action="http://neptune.atlantis-intl.com/cgi-bin/FormMail.pl" method="POST">
 
Required Parameters:
<input type=hidden name="recipient" value="to@host.com">
 
Optional Parameters:
<input type=hidden name="subject" value="Your Subject">
<input type=hidden name="email" value="from@host.com">
<input type=hidden name="realname" value="from_full_name">
<input type=hidden name="redirect" value="http://www.host.com/tofile.htm">
 
 
-*-
 
Examples:
 
Example #1
 
<html>
<head>
<title>HTML Form to E-Mail Example</title>
</head>
 
<body>
 
<h1>GUEST BOOK:</h1>
 
<form action="http://neptune.atlantis-intl.com/cgi-bin/FormMail.pl" method="POST">
<input type="hidden" name="recipient" value="Sales@AtlantisNet.com">
<input type="hidden" name="subject" value="TEST: Guest Book Submittal">
<input type="hidden" name="email" value="Postmaster@AtlantisNet.com">
<input type="hidden" name="realname" value="WebSite">
<input type="hidden" name="redirect" value="http://www.AtlantisNet.com/isp/thanks.htm">
 
<pre>
Name: <input type="text" size="40" name="Name">
E-Mail Address: <input type="text" size="40" name="EMail">
Street Address: <input type="text" size="40" name="Address">
City: <input type="text" size="20" name="City">
State: <input type="text" size="2" name="State">
Zip: <input type="text" size="10" name="Zip">
Phone Number: <input type="text" size="12" name="Phone">
 
<input type="submit" value="Submit"> <input type="reset" value="Reset">
 
</pre>
</form>
 
</body>
</html>
 
-*-
 
Example #2
 
<html>
<head>
<title>HTML Form to E-Mail Example #2</title>
</head>
 
<body>
 
<h1>SEND E-MAIL:</h1>
 
<form action="http://neptune.atlantis-intl.com/cgi-bin/FormMail.pl" method="POST">
 
<pre>
From: <input type="text" size="40" name="realname"> (Your Real Name)
From: <input type="text" size="40" name="email"> (Your E-Mail Address)
To: <input type="text" size="40" name="recipient"> (Recipient's E-Mail Address)
Subject: <input type="text" size="40" name="subject">
 
Message:
<textarea name="Message" rows=10 cols=60 value=" "></textarea>
 
<input type="submit" value="Send Message"> <input type="reset" value="Clear Message">
 
</pre>
</form>
 
</body>
</html>]