Our
standard set of scripts will only work if you have requested them
to be added to your web site. Once they have been added there will
be a directory called /cgi off /web in your root
directory. Please note that our scripts are designed to function for
our FTP users only.
Adding
a Form to your Website
To add
a form to your web site, simply cerate the HTML layout of your choice
calling each field a different name. You can use the example code
below as reference. Replace the recipient value to an email address
of your choice, the subject value of your choice and a redirect page
of your choice. The redirect page is displayed when the form has been
successfully submitted.
Sample
Text Box:
Sample
Scrolling Text Box:
The
code below will create the form shown above:
<form method="POST"
action="http://www.yourdomain.com/cgi/FormMail.pl">
<input type="hidden"
name="recipient"
value="your@emailaddress.com"><input
type="hidden"
name="redirect"
value="http://www.yourdomain.com/yoursuccesspage.html"><input
type="hidden"
name="subject"
value="Subject
you would like in your email"><div
align="center"><center><p>Sample
Text Box:<br><input
type="text"
name="box1"
size="14"></p>
</center></div><div
align="center"><center><p>Sample
Scrolling Text Box:<br>
<textarea rows="2"
name="box2"
cols="12"></textarea></p>
</center></div><div
align="center"><center><p><input
type="submit"
value="Submit"
name="submit"><input
type="reset"
value="Reset"
name="reset"></p>
</center></div>
</form>