PHP - Flash Email Form Issues! (from tute)

Hi folks, Ive read through all the other problems associated with the tute on Kirupa, and I still cant work out whats wrong with my php code?

This is whats in the php,

I have three input boxes in flash, name, email, message (so Im not sure why there is a php line for “body”???

<?php
$sendTo = “[email protected]”;
$subject = “Testing Form”;
$headers = "From: " . $_POST[“name”];
$headers .= “<” . $_POST[“email”] . ">
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-Path: " . $_POST[“email”];
$message = $_POST[“message”];
$body = $_POST[“message”];

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

The server accepts php etc, but Im really new to this, so any advice would be VERY welcome!

Thanks a million!
scotia 2k4