August 29, 2008

 


Launch Demo
Compatibility:
You must be running Microsoft IE 5.5 or higher to use this demo. Firefox for Windows users need to install the  View Page in IE plugin.  Click here for more details on browser compatibility.
If the demo does not launch in a new window your pop-up blocker is likely to be the cause and should be disabled.  Note that some firewalls also have pop-up blockers built in.


Friendly personal
support

   


Steps to making a form on your website where people can email you information:

  1. copy the below code
  2. replace the words in bold black with your domain name and your email.
  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.

<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="Form mail email">
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>