Click to See Complete Forum and Search --> : An e-mail form?


youlilsheshe
11-28-2003, 12:30 AM
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 youlilsheshe@Yahoo.com) Thanks

fredmv
11-28-2003, 01:41 AM
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 (http://www.hotscripts.com/)), however, if you don't have any server-side scripting available to you, you can always use response-o-matic (http://www.response-o-matic.com/). ;)

soccer362001
11-28-2003, 11:17 AM
Take a look at this.
http://forums.webdeveloper.com/showthread.php?s=&threadid=22267

biff
11-29-2003, 10:19 AM
http://freedback.com/index.php will host one for you, & they're real easy. :)

Immortal
11-29-2003, 01:10 PM
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<body>

<form action="mailto:e-mail@something.com" method="post">
<input type="text" name="Header" size="24" border="0"><br>
<input type="text" name="Date" size="24" border="0">
<p><textarea name="body" rows="18" cols="39"></textarea></p>
<td colspan="2" align="center"><input type="submit" value="Send">
</form>







</html>

Paul Jr
11-29-2003, 01:20 PM
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.