Hi everyone,
I am looking at putting a survey onto my website and have managed to find some coding. Does anyone know how I would modify it so that, when the form is submitted, it goes automatically to my email address?
This is the code I have:
<!-- This is a sample survey form -->
<form name="Survey" action="mailform.asp" method="post">
<input type="hidden" name="MailTo" value="[email protected]">
<input type="hidden" name="NextURL" value="Thanks.htm">
<p>Name: <input type="text" name="VisitorName" size="40"></p>
<p>E-Mail Address: <input type="text" name="EmailAddress" size="40"></p>
<p>Please Rate This Site:
<input type="radio" name="Rating" value="1">I like it
<input type="radio" name="Rating" value="2">It's okay
<input type="radio" name="Rating" value="3">It needs work</p>
<p>Comments: <input type="text" name="Comments" size="40"</p>
<p><input type="submit" value="Submit"></p>
</form>
Many thanks,
Gary
BTW...I am on a linux server is that makes any difference?




