Flash - PHP - Mail - Problem

well, i’ve done a mail form in php once, and it worked;
but in flash, it never did. so i guess its something with the action script
u have to press “kontakt” to see it http://de.geocities.com/exossho/kussnet_flash_2.html

here is the actionscript

var senderLoad:LoadVars = new LoadVars();
var receiveLoad:LoadVars = new LoadVars();

_root.send_mc.sender.onRelease = function(){
senderLoad.theName = _root.vorname_mc.theName.text;
senderLoad.theLastname = _root.nachname_mc.theLastname.text;
senderLoad.theEmail = _root.email_mc.theEmail.text;
senderLoad.thePhone = _root.telefon_mc.thePhone.text;
senderLoad.theStreet = _root.strasse_mc.theStreet.text;
senderLoad.theOrt = _root.ort_mc.theOrt.text;
senderLoad.theKommentar = _root.kommentar_mc.theKommentar.text;
senderLoad.sendAndLoad(“http://de.geocities.com/exossho/send.php”,receiveLoad);
}

and the php


<?php

$to = "exossho@gmail.com";
$subject = "mail test";
$message = "Name: " . $theLastname . " , " . $theName;
$message .= "/nEmail: " . $theEmail;
$message .= "/n/nAdresse: " . $theStreet . " / " . $theOrt;
$message .= "/n/nTelefon: " . $thePhone;
$message .= "/n/nKommentar: " . $theKommentar;
$headers = "From: $theEmail";
$headers .= "/nReply-To: $theEmail";

mail($to,$subject,$message,$headers);

?>


and here is the whole
http://de.geocities.com/exossho/kussnet_flash_2.fla