akita96th Posted November 3, 2008 Share Posted November 3, 2008 Hi I have a question on my PHP script im using it in conjunction with a flash form and I want it to send a confirmation when the message is sent..Right now the script only sends the variables Name: Email: Phone: Message: but the text that was typed into the input boxes was not sent anyway here is my script I would appreciate if someone would check it and see if it has any errors. Zane if your out there Hello from daddyO <?PHP $to = "akita96th@hotmail.com"; $subject = "Flashwrkz Contact Form"; $message = "Name: " . $theName; $message .= "\nPhone: " . $thePhone; $message .= "\nEmail: " . $theEmail; $message .= "\n\nMessage: " . $theMessage; $headers = "From: $theEmail"; $headers .= "\nReply-To: $theEmail"; $sentOk = mail($to,$subject,$message,$headers); echo "sentOk=" . $sentOk; ?> Quote Link to comment https://forums.phpfreaks.com/topic/131145-help-with-confirmation-email/ Share on other sites More sharing options...
peranha Posted November 3, 2008 Share Posted November 3, 2008 Where are you getting $theName, $thePhone, etc at in the form. I dont see them set before you try and send them out. Quote Link to comment https://forums.phpfreaks.com/topic/131145-help-with-confirmation-email/#findComment-680920 Share on other sites More sharing options...
akita96th Posted November 4, 2008 Author Share Posted November 4, 2008 theName theEmail are the instance names of the text boxes in flash Quote Link to comment https://forums.phpfreaks.com/topic/131145-help-with-confirmation-email/#findComment-681791 Share on other sites More sharing options...
DeanWhitehouse Posted November 4, 2008 Share Posted November 4, 2008 I don't think they create php variables, i think you will need something like $thename = $_POST['thename']; etc. Quote Link to comment https://forums.phpfreaks.com/topic/131145-help-with-confirmation-email/#findComment-681825 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.