Flash form PHP coding problem

Hello, I am having some trouble with my flash form using PHP code to send. I attempted to add 1 extra parameter. I have triple checked my AS and it’s all where it should be and correctly contextualized. There are four variables rather than three (name, email,date, message). I’m sure the problem lies in my poor understanding of PHP, so I hope that someone can see my code, laugh and than answer my newbie problem.

here’s my PHP:

[SIZE=2]*<?php
$sendTo = "me@mysite.com";
$subject = “website inquiry”;

$headers = "From: " . $_POST[“name”];
$headers .= “<” . $_POST[“email”] . ">
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-Path: " . $_POST[“email”];
$headers .= "Date: . $_POST[“date”];
$message = $_POST[“message”];

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

*any help will be greatly appreciated,

thank you all[/SIZE]