Good day everyone, i have the following code here to get a simple form that enables my visitors to make contact with me via e-mail and give my home their name and email address.. well thats what i hope for it to do. i cant manage to make the form send the data to my e mail. i have this code posted down below if anybody could cure your symptoms to send into the email, Johnnyundisputedforceclan. com it could be greatly appreciated
Thank you a ton
John
< sort method=" post" enctype=" text/plain" action=" --WEBBOT-SELF--" name=" mail-form" onSubmit=" place. href='_derived/nortbots. htm'; go back false; " webbot-onSubmit=" " > <! --webbot bot=" SaveResults" S-Email-Address=" That_k1d0hotmail. com" S-Email-Format=" TEXT/PRE" startspan --> < reviews TYPE=" hidden" NAME=" VTI-GROUP" VALUE=" 0" > <! --webbot bot=" SaveResults" i-checksum=" 43374" endspan --> < label> Title: < /label> < br /> < reviews type=" text" name=" name" size=" 44" /> < br /> < label> E-mail: < /label> < br /> < reviews type=" text" name=" e-mail" size=" 44" /> < br /> < label> Thoughts: < /label> < br /> < textarea cols=" 40" name=" comment" rows=" 5" > < /textarea> < br /> < br /> < reviews type=" submit" value=" Send" /> < reviews type=" reset" value=" Clear" /> < /form>
The shape needs to deliver the variables to somewhat of a server-side script,
for a PHP script. That script then does the exact email part.
http: //www. search engine. com/searchhl=en& q=simple php form& btnG=Search
You may need a server side code to have the form send out you a snail mail. You can probably build a PHP file. Title is sendmail. php and inside your form code produce the action that will action=sendmail. php
Use this short code throughout sendmail. php
< php
foreach($_POST as $key=> $val)
$message. =$key. "=". $val. "\n";
mail("youemailaddressdomain. com", "Contact us form results", $message);
>
I’ve truly got it upward and going these days thanks Tom.