|
I have this code in a php file for a 000webhost subdomain, practicefeedbackform.host22.com, and it does not work. it sends a message to my email, but the sender is "(unknown sender)", and all the message says is "to me", no matter what I put in the message area. just to make sure I'm being clear, this is the code I have:
<?
$email = $_POST["email"] ;
$message = $_POST["message"] ;
mail( laxmaster1919@gmail, "Feedback Form
Results",
$message, "From: $email" );
header( "Location: thankyou.html" );
?>
|