Flash/php email form

hey there mates, followed the tutorial by senocular, bue added some other inputs…

unfortunnatelly it wont work!checked every step flash and think it’s ok…
is it my php file? can anyone find any error?
thanks in advance!
here goes…

<?php

$sendTo = “[email protected]”;
$subject = “My Flash site reply”;

$headers = “From: " . $_POST[“firstName”] .” “. $_POST[“lastname”] . “<” . $_POST[“email”] .”>
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-path: " . $_POST[“email”];

$message = "Name: “.$_POST[‘name’].”
Surname: “.$_POST[‘surname’].”
Title: “.$_POST[‘title’].”
Position: “.$_POST[‘position’].”
Company: “.$_POST[‘company’].”
Adress: “.$_POST[‘adress’].”
City: “.$_POST[‘city’].”
Country: “.$_POST[‘country’].”
Zip-Code: “.$_POST[‘zip’].”
Phone: “.$_POST[‘phone’].”
Mobile Phone: “.$_POST[‘mobile’].”
Fax: “.$_POST[‘fax’].”
Email: “.$_POST[‘email’].”
Oral Presentation?: “.$_POST[‘oral’].”
Poster?: “.$_POST[‘poster’].”
Provisory Title: “.$_POST[‘provisory’].”
Date: ".$_POST[‘date’];

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