stunnedhippo Posted July 10, 2009 Share Posted July 10, 2009 I have been trying to figure out what is wrong with this script for ages and I am beggining to give up on it. I really need some help on what is wrong with my script. All I want to do is send an email through the site to an email address. The email send, but the details in which the user inputs are missing. I dont think the variables are right in the script. Please please please help me [attachment deleted by admin] Link to comment https://forums.phpfreaks.com/topic/165473-sending-mail-with-php/ Share on other sites More sharing options...
Maq Posted July 10, 2009 Share Posted July 10, 2009 Please post the pertinent code, not the entire script. Link to comment https://forums.phpfreaks.com/topic/165473-sending-mail-with-php/#findComment-872749 Share on other sites More sharing options...
stunnedhippo Posted July 10, 2009 Author Share Posted July 10, 2009 <?PHP $to = "[email protected]"; $subject = "Online Quotation Request"; $message = "Name:".$theName; $message .= "\nNumber:".$theNumber; $message .= "\nEmail:".$theEmail; $message .= "\n\nMessage:".$theMessage; $headers = "From: $theEmail"; $headers .= "\nReply-To: $theEmail"; $sentOk = mail($to,$subject,$message,$headers); echo "sentOk=" . $sentOk; ?> Link to comment https://forums.phpfreaks.com/topic/165473-sending-mail-with-php/#findComment-872763 Share on other sites More sharing options...
Maq Posted July 10, 2009 Share Posted July 10, 2009 Ok, that looks fine, where are these values you're assigning and concatenating to '$message' coming from? Link to comment https://forums.phpfreaks.com/topic/165473-sending-mail-with-php/#findComment-872778 Share on other sites More sharing options...
stunnedhippo Posted July 10, 2009 Author Share Posted July 10, 2009 The $message is relating to the text input fields designed on the form. so the user just types their: name contact and message details and clicks send. Although this message sends and the subject appears in my inbox. the message areas are blank. Link to comment https://forums.phpfreaks.com/topic/165473-sending-mail-with-php/#findComment-872794 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.