May 6, 200917 yr Hi My PHP code and contact form is working well, however, its just the comment box text that isnt actually sending to my email inbox. Everything else sends across fine, i just dont recieve the message. Here is my php code and my contact page can be found here <?php $to = "leanne.orr@unn.ac.uk"; $subject = "website feedback"; $name = $_REQUEST['Name']; $email = $_REQUEST['Email']; $notes = $_REQUEST['notes']; mail($to, $subject, $name, $email, $notes); $htmlbody = "<p>Thank you for your comments. "; $htmlbody .= "The following comment:<br />$notes<br />"; $htmlbody .= "has been sent</p>"; $htmlout = "<html><head></head><body>". $htmlbody. "</body></html>"; echo $htmlout; ?>
Create an account or sign in to comment