Jump to content

Help with confirmation email


akita96th

Recommended Posts

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;

?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.