Php email form

this is what ive done:

[PHP[

<?
// Recieving and Creating Variables…
$Name = $_POST[‘name’];
$Email= $_POST[‘email’];
$Email = "[email protected]";
$Message = $_POST[‘message’];
$Subject = “Contact”;
$Header = “From: $Name <$Email>”;

//Performing Mail script…
mail($Email, $Subject, $Message, $Header);

?>



now everything working with the fla file and a msg sends to my inbox but when some user types his name, email, and message, willl it display his/her email address when i recieve the msg in my inbox?