PDA

View Full Version : SendMail scripts and forms


nicholas
07-01-2003, 12:59 AM
One Script we have found to work well and is easy to install is this program:

http://www.nowsee.com/scripts/form/

I am certain there are many scripts more suitable to the task and welcome links to be posted to the forum on this subject.

Otherwise you can use the server inbuilt function on a script like this

<form method="POST" action="/cgi-bin/FormMail.pl">
<input type="hidden" name="recipient" value="order@yourdomain.com">
<input type="hidden" name="subject" value="Order Request">
<input type="hidden" name="required" value="realname,e-mail,phone">
Please Enter Your Name:<br>
<input name="realname" size="40">
<p>
Please Enter Your E-mail Address:<br>
<input name="e-mail" size="40">
<p>
Please Enter Your Phone Number:<br>
<input name="phone" size="40">
<p>
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</form>