PHP mailer not working when using dynamic text field in Flash MX

I need some help with the following.

I have three keyframes in the main timeline:
#1 keyframe holds the input text fields (“name”, “address”, and so on) and button “next”;
#2 keyframe holds one big dynamic text field that receives the input from the input text fields and button “send”;
#3 keyframe informs the user that his/her data has been successfully received.

Everything works (the dynamic field receives the data from the input text fields), but after I publish the website and click the “send” button I never get any email with the results from the forms.
The following is the code on the second keyframe. “result” is the instance name of the dynamic text field. “aResult” is the variable name (of the same dynamic textfield) that stores the received input, which I want to have sent to my email address. When I do the ‘trace’ action I can see the contents of the variable “aResult”. But for some reason the contents do not get sent.

stop();
result.htmlText = "<b><font size='14'>Online Application Results</font size></b> 
"+" \r";
result.htmlText += "<b>Name:                            </b>"+namee+" 
";
result.htmlText += "<b>Title:                               </b>"+titlee+" 
";
result.htmlText += "<b>Adress:                         </b>"+streete+"  "+streete2+" 
";
result.htmlText += "<b>City:                                </b>"+citye+" 
";
result.htmlText += "<b>State:                             </b>"+stateBoxe+" 
";
result.htmlText += "<b>ZIP/ Postal Code:         </b>"+zipe+" 
";
result.htmlText += "<b>Country:                         </b>"+countryBoxe+" 
";
result.htmlText += "<b>Work Phone:                </b>"+workPhonee+" 
";
result.htmlText += "<b>Home Phone:               </b>"+homePhonee+" 
";

aResult = result.htmlText;
send.onRelease = function() {
	trace(aResult);
	loadVariables("email.php", "POST");
};

My PHP code in “email.php” file, which is stored in the same directory as the .swf and .html file on the server:

<?php 
$sendTo = "my_email@yahoo.com"; 
$subject = "Comments and Suggestions on My Website"; 
// don't pay attention to HEADERS -- I am not using them for now. Maybe that's why 
//the script doesn't work?
$headers = "From: " . $_POST["name"] . "<" . $_POST["email"] .">
";
$headers .= "Reply-To: " . $_POST["email"] . "
"; 
$headers .= "Return-Path: " . $_POST["email"]; 
$message = $_POST["aResult"]; 
mail($sendTo, $subject, $message, $headers, ); 
?> 

Thank you very much in advance.

P.S. I started from HERE and ended up having what I have now.