Don't see my PHP email?

  • Thread starter Thread starter Carl H
  • Start date Start date
C

Carl H

Guest
On this PHP page below, I only changed the first two lines. I put in my personal settings, but I'm still not getting my emails. Am I supposed to change something else in this simple php form? Although I am getting the thank you page(thanks.html) after submission.


<form method="post" action="mail.php">
Your Email: <input name="[email protected]" type="text" />

Feedback/Comments:

<textarea name="message" rows="15" cols="40">
</textarea>

<input type="submit" />
</form>

and have a php file that contains this:

<?php
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ;

mail( "[email protected]", "Feedback Form Website",
$message, "From: $email" );
header( "Location: thanks.html" );
?>
 
Back
Top