Forum Moderators: open
Are you on an ISP where they provide such things?
If you are, seek out their help and see how to invoke it.
If you are on an ISP where you have your own CGI-BIN directory, seek out London Perl Mongers FormMail and install that.
It'll do what you want, I'm sure
DerekH
<FORM METHOD="POST" ACTION="/cgi-sys/formmail.pl" name="">
<input type="hidden" name="recipient" value="EmailAddress@WhereFormGetsEmailedTo.com">
<input type="hidden" name="subject" value="Name of Your Widget Form">
<INPUT TYPE="hidden" NAME="redirect" VALUE="http://UrlSentToAfterFormIsSubmitted.com/thankyou.html">
<INPUT TYPE="hidden" NAME="sort" VALUE="order:value1,value2,value3,value4,value5">
These next lines should be automatically added when you added the submit and reset buttons at the end of your form. I have included them anyway because thats what makes the form get submitted.
<input type="submit" name="Submit"
value="Submit">
<input type="reset" value="Reset" name="reset">
Hope this helps you or someone. That's how I do it anyway. mastervisa