PHP Flash Form Problem

Hi - I have used the PHP flash TUT on this site - its great but I have made some changes and used global variables in flash with names - question1, question2 etc. I have sent these off with a LoadvariablesNum to email.php but although I get an email sent it has nothing in the body - Could anyone take a look at this php script (which i presume is the problem??Could it be a flash problem when it is sending the mail??) and let me know what it should say to get question1 - 5 variables to list themselves in the body
Many thanks

Stacy

<?php
$sendTo ="[email protected]";
$subject = “Westenders Game Response”;

// Recieving the variables.
$message = $_POST[“question1”];

//Performing Mail script…
mail($sendTo, $subject, $message);

?>