Php flash 8 (help!)

I apologize for my ignorance, but I tried the tutorial on setting up an email form. Here is what I have so far.

<?php
$sendTo = “mcarter678@yahoo.com”;
$subject = “My Flash site reply”;$headers = "From: " . $_POST[“name”];
$headers .= “<” . $_POST[“email”] . ">
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-Path: " . $_POST[“email”];
$message = $_POST[“message”];mail($sendTo, $subject, $message, $headers);
?>

Please HELP!!!
marlin:beard: