Flash/PHP Email Form

Hi:

I am trying to create an email form in Flash which sends a confirmation email as well. I am basing it off the tutorial on this site. Needless to say, it is not working; it’s not sending me any of the form info. Can someone please take a look at the php and fla to see if i am missing something. PHP:


<?php
$sendTo = "travisredington@hotmail.com";
$subject = "Newsletter Subscription Request from jrarchitect.com";

$message = "FirstName: " . $_POST["firstName"];
$message = "LastName: " . $_POST["lastName"];
$message = "StreetAdd: " . $_POST["streetAdd"];
$message = "City: " . $_POST["city"];
$message = "State: " . $_POST["state"];
$message = "Zip: " . $_POST["zip"];

$headers .=  "<" . $_POST["email"] . ">
";
$headers .= "Reply-To: " . $_POST["email"] . "
";
$headers .= "Return-Path: " . $_POST["email"];


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

The fla is attached.

Any help would be appreciated.

Thanks