I am using the form below, and it works except for sending the message to
the user, any ideas/clues ?
Being so close to it working is driving me nuts !
Feedback Form
Please provide me your feedback!
Enter your name:
Enter you e-mail:
Enter your feedback:
http://www.imsltd.com/feedback.html";);
}
$to = "[EMAIL PROTECTED]";
$subject = "Feedback";
$mail_body = "Feedback From Your Site\n";
$mail_body .= "Sender's Name: $name\n";
$mail_body .= "Sender's E-Mail: $email\n";
$mail_body .= "Feedback: $feedback\n\n";
$mail_headers = "From: My Web Site <> \n";
$mail_headers .= "Reply-To: $sender_email\n\n";
mail($mail_to, $mail_subject, $mail_body, $mail_headers);
?>
Feedback Form
Thank you for your feedback.You have sent the following
feedback:
Your Feedback Message:
Your Name:
Your Email:
Many thanks
Denis Croombs
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]