Flash from problem

I have made a form…

and on the submit button i added this code:
on (release) {
if (name eq “” || contact eq “” || title eq “” || message eq “” ) {
info = “Please fill in all fields”;
stop();
} else {
loadVariablesNum(“send.php”, 0, “POST”);
nextFrame();
name = “”;
contact = “”;
title = “”;
message = “”;
info = “”;
}
}

The send.php file is like:
<?
$headers = “From: $name”;
mail("dh@designers-hub.com", “$headers”, “$title”, “$contact”, “$message”);
?>

For some reason when it sends it doesn;t send the $message…

Can you fix this or do you know a better code?