PHP + FLASH mailer

Hi all,
I tried using the tutorial from the FLASH + PHP emailer section and wasnt successful. This is the error message I got from the “email.php” file on my server:

Notice: Undefined index: name in C:\webspace\syrup\pointrecords.com\pointrecords.com\www\email.php on line 6

Notice: Undefined index: email in C:\webspace\syrup\pointrecords.com\pointrecords.com\www\email.php on line 7

Notice: Undefined index: email in C:\webspace\syrup\pointrecords.com\pointrecords.com\www\email.php on line 9

Notice: Undefined index: message in C:\webspace\syrup\pointrecords.com\pointrecords.com\www\email.php on line 11

The “email.php” contents is as follows :

<?php

$sendTo = "myemail@email.com";
$subject = “My Flash site reply”;

$headers = “From: " . $_POST[“name”];
$headers .= “<” . $_POST[“email”] .”>
";

$headers .= "Reply-To: " . $_POST[“email”];

$message = $_POST[“message”];

mail($sendTo, $subject, $message, $headers);
?>

I couldnt find anything wrong… HELP please