Hunter94 Posted February 13, 2009 Share Posted February 13, 2009 Ok, I got every thing to work on the website I only got one problem with the form. When I do a test submit I fill out my name, email, subject and message then submit it. I go to my email to see if it worked it does but it only sends me the message. It doesn't tell me there Name, Email or subject just the message. Heres the HTML and PHP code. HTML Code: <form method="post" action="sendmail.php"> Full Name:<input name="email" type="text" /><br /> <br /> Your Email:<input name="email" type="text" /><br /> <br /> Subject:<input name="email" type="text" /><br /> Message:<br /> <textarea name="message" rows="15" cols="40"> </textarea><br /> <input type="submit" /> </form>] PHP Code: <?php $email = $_REQUEST['email'] ; $message = $_REQUEST['message'] ; mail( "[email protected]", "iaminfinity.net Question/Comment.", $message, "From: $email" ); header( "Location: www.iaminfinity.net" ); ?> I think the problem is that the PHP code is missing some code to send me the stuff I want. Also here is what the Form looks like on a Webpage. http://iaminfinity.net/emailsubmit.html Quote Link to comment https://forums.phpfreaks.com/topic/145019-php-email-form/ Share on other sites More sharing options...
samshel Posted February 13, 2009 Share Posted February 13, 2009 // To send HTML mail, the Content-type header must be set $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; // Additional headers $headers .= 'To: Mary <[email protected]>, Kelly <[email protected]>' . "\r\n"; $headers .= 'From: Birthday Reminder <[email protected]>' . "\r\n"; $headers .= 'Cc: [email protected]' . "\r\n"; $headers .= 'Bcc: [email protected]' . "\r\n"; // Mail it mail($to, $subject, $message, $headers); u can add extra headers like above... Quote Link to comment https://forums.phpfreaks.com/topic/145019-php-email-form/#findComment-760967 Share on other sites More sharing options...
drisate Posted February 13, 2009 Share Posted February 13, 2009 Thats because your form has all email as name lol Full Name:<input name="email" type="text" /> should be Full Name:<input name="name" type="text" /> and same for every field names ;-) Quote Link to comment https://forums.phpfreaks.com/topic/145019-php-email-form/#findComment-760969 Share on other sites More sharing options...
Hunter94 Posted February 13, 2009 Author Share Posted February 13, 2009 Thats because your form has all email as name lol Full Name:<input name="email" type="text" /> should be Full Name:<input name="name" type="text" /> and same for every field names ;-) Ok, well it gives me an email now but still no Name or Subject just email and message. Heres the codes. HTML Code: <form method="post" action="sendmail.php"> Full Name:<input name="name" type="text" /><br /> <br /> Your Email:<input name="email" type="text" /><br /> <br /> Subject:<input name="subject" type="text" /><br /> Message:<br /> <textarea name="message" rows="15" cols="40"> </textarea><br /> <input type="submit" /> </form>] PHP Code: <?php $email = $_REQUEST['email'] ; $message = $_REQUEST['message'] ; mail( "[email protected]", "iaminfinity.net Question/Comment.", $message, "From: $email" ); header( "Location: www.iaminfinity.net" ); ?> Quote Link to comment https://forums.phpfreaks.com/topic/145019-php-email-form/#findComment-760980 Share on other sites More sharing options...
savagenoob Posted February 13, 2009 Share Posted February 13, 2009 Thats because your form has all email as name lol Full Name:<input name="email" type="text" /> should be Full Name:<input name="name" type="text" /> and same for every field names ;-) Ok, well it gives me an email now but still no Name or Subject just email and message. Heres the codes. HTML Code: <form method="post" action="sendmail.php"> Full Name:<input name="name" type="text" /><br /> <br /> Your Email:<input name="email" type="text" /><br /> <br /> Subject:<input name="subject" type="text" /><br /> Message:<br /> <textarea name="message" rows="15" cols="40"> </textarea><br /> <input type="submit" /> </form>] PHP Code: <?php $email = $_REQUEST['email'] ; $message = $_REQUEST['message'] ; mail( "[email protected]", "iaminfinity.net Question/Comment.", $message, "From: $email" ); header( "Location: www.iaminfinity.net" ); ?> Dude you gotta get those values from the form like this... <?php $email = $_REQUEST['email'] ; $message = $_REQUEST['message'] ; $name = $_REQUEST['name']; $subject = $_REQUEST['subject']; mail( $name, $subject, $message, "From: ". $email ); header( "Location: www.iaminfinity.net" ); ?> Quote Link to comment https://forums.phpfreaks.com/topic/145019-php-email-form/#findComment-760996 Share on other sites More sharing options...
Hunter94 Posted February 13, 2009 Author Share Posted February 13, 2009 Ok, I did that and added my info in and it still just sends me the Email and the Stuff in the message. Heres the PHP Code the HTML Code stayed the same. PHP Code: <?php $name = $_REQUEST['name']; $email = $_REQUEST['email'] ; $subject = $_REQUEST['subject']; $message = $_REQUEST['message'] ; mail( "[email protected]", "iaminfinity.net Question/Comment.", $message, "From: $email" ); header( "Location: www.iaminfinity.net" ); ?> Quote Link to comment https://forums.phpfreaks.com/topic/145019-php-email-form/#findComment-761003 Share on other sites More sharing options...
Lukeidiot Posted February 13, 2009 Share Posted February 13, 2009 Ok, I did that and added my info in and it still just sends me the Email and the Stuff in the message. Heres the PHP Code the HTML Code stayed the same. PHP Code: <?php $name = $_REQUEST['name']; $email = $_REQUEST['email'] ; $subject = $_REQUEST['subject']; $message = $_REQUEST['message'] ; mail( "[email protected]", "iaminfinity.net Question/Comment.", $message, "From: $email" ); header( "Location: www.iaminfinity.net" ); ?> Why do you have a predefined subject, AND a subject form? Anyways I modified it to read subject from form. <?php $name = $_REQUEST['name']; $email = $_REQUEST['email'] ; $subject = $_REQUEST['subject']; $message = $_REQUEST['message'] ; mail( "[email protected]", "$subject", $message, "From: $email" ); header( "Location: www.iaminfinity.net" ); ?> Quote Link to comment https://forums.phpfreaks.com/topic/145019-php-email-form/#findComment-761023 Share on other sites More sharing options...
Hunter94 Posted February 13, 2009 Author Share Posted February 13, 2009 Luke that didn't do any thing. I need it to show there Name, & subject when they fill out the form and post it. But it only shows me the Message and Email. Does any one know how to make this happen? Quote Link to comment https://forums.phpfreaks.com/topic/145019-php-email-form/#findComment-761045 Share on other sites More sharing options...
savagenoob Posted February 13, 2009 Share Posted February 13, 2009 Try this... <?php $toemail = "[email protected]"; $fromemail = $_REQUEST['email'] ; $message = $_REQUEST['message'] ; $name = $_REQUEST['name']; $subject = $_REQUEST['subject']; $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= 'To: ' . $toemail "\r\n"; $headers .= 'From: '. $fromemail . "\r\n"; mail( $toemail, $subject, $message, $headers ); header( "Location: www.iaminfinity.net" ); ?> Quote Link to comment https://forums.phpfreaks.com/topic/145019-php-email-form/#findComment-761679 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.