I am making a php form that I think found on this site. it sends the email to my account but it doesnt send any content
<?php
$sendTo = “stephen_mulvain@hotmail.co.uk”;
$subject = “Mavis Gotto Sign up”;$headers = .$_POST[“email”];
$headers = "Reply-To: " . $_POST[“email”] ;
$headers = "Return-path: " .$_POST[“email”];
$message = .$_POST[“name”];
// once the variables have been defined, they can be included
// in the mail function call which will send you an email
mail($sendTo, $subject, $message, $headers);
?>
can any one see what is going wrong? I want the reply to be next to the email in the message in the email. Someone please help as I have no idea what to do.
Cheers