Reply
newbie question/textfields contents e-mailed
Old 05-22-2004, 04:42 PM newbie question/textfields contents e-mailed
Experienced Talker

Posts: 45
how do i get the info from some textfields e-mailed to me?
Drat39 is offline
Reply With Quote
View Public Profile
 
When You Register, These Ads Go Away!
     
Old 05-22-2004, 05:05 PM
cmonkey's Avatar
Ultra Talker

Posts: 268
you need to have the form submit to a script of some sort, I usually use php, but just about anything will work.
cmonkey is offline
Reply With Quote
View Public Profile
 
Old 05-22-2004, 05:23 PM
Experienced Talker

Posts: 45
ok, spose i have to contact my isp to get where to send the ACTION, then is it down to my isp to forward the user input in the form of an email?
Drat39 is offline
Reply With Quote
View Public Profile
 
Old 05-23-2004, 09:52 AM
TheX's Avatar
Skilled Talker

Posts: 99
Location: NYC
http://www.stadtaus.com/en/php_scripts/formmail_script/ as good as it gets.
TheX is offline
Reply With Quote
View Public Profile Visit TheX's homepage!
 
Old 05-28-2004, 09:45 AM
Experienced Talker

Posts: 43
It’s easy. Put this form in you html page:
<form method="post" action="mail.php">
<textarea rows="4" name="txt" cols="50"></textarea>
<br><br>
<input type="submit" value="Submit" name="b1">
<input type="reset" value="Reset" name="b2">
</form>
and create file mail.php:
<?
if (@mail("you@mail.com", "Subject", "$txt")) { echo "Mail send"; } else { echo "Error"; }
?>
Do not forget to replace you@mail.com with you mail address.

If you want to create more complex forms check out http://easyformit.com
alexdio is offline
Reply With Quote
View Public Profile Visit alexdio's homepage!
 
Reply     « Reply to newbie question/textfields contents e-mailed
 

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML

 


Page generated in 0.12565 seconds with 13 queries