An e-mail form?

How do I make one of those forms that allows people to fill it out and having it sent automaticly to your e-mail ( like a feedback form) can someone tell me how to have one with the persons name/e-mail/ and then a comment box and the have it sent to my e-mail ( which happens to be <!-- e --><a href="mailto:[email protected]">[email protected]</a><!-- e -->) Thanks<!--content-->If you have server-side scripting (Perl, PHP, etc.) you could write a script quite easily or just get one for free somewhere (such as hotscripts.com (<!-- m --><a class="postlink" href="http://www.hotscripts.com/">http://www.hotscripts.com/</a><!-- m -->)), however, if you don't have any server-side scripting available to you, you can always use response-o-matic (<!-- m --><a class="postlink" href="http://www.response-o-matic.com/">http://www.response-o-matic.com/</a><!-- m -->). ;)<!--content-->Take a look at this.<br />
<!-- m --><a class="postlink" href="http://forums.webdeveloper.com/showthread.php?s=&threadid=22267">http://forums.webdeveloper.com/showthre ... adid=22267</a><!-- m --><!--content-->http://freedback.com/index.php will host one for you, & they're real easy. :)<!--content--><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><br />
<br />
<html><br />
<body><br />
<br />
<form action="mailto:[email protected]" method="post"><br />
<input type="text" name="Header" size="24" border="0"><br><br />
<input type="text" name="Date" size="24" border="0"><br />
<p><textarea name="body" rows="18" cols="39"></textarea></p><br />
<td colspan="2" align="center"><input type="submit" value="Send"><br />
</form><br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
</html><!--content-->That won't send the e-mail automatically. It will just open up the users' default mail client in the compose section, with the "send to" filled out with the e-mail address in the "mailto:" of the form.<!--content-->
 
Back
Top