PHP mail for in Flash MX

From: Joe (something_or_other_at_grapevine.net)
Date: 01/29/04


Date: Thu, 29 Jan 2004 21:40:36 -0000

Hi, I am trying to make a contact form for a flash site.

I followed this tutorial [ http://codewalkers.com/tutorials/10/1.html ] but
the mail just doesnt come ;-(

This is the script on my send button:

on (release) {
if (name eq "" or subject eq "" or message eq "" or email eq "") {
stop();
} else {
loadVariablesNum("form.php", 0, "POST");
gotoAndStop(3);
}
}

and this is the script in the form.php:

<?PHP
$to = "jf@changed to avoid usenet spam monsters.com";
$msg = "$name\n\n";
$msg .= "$message\n\n";
mail($to, $subject, $msg, "From: My web site\nReply-To: $email\n");
?>

any ideas?

Thanks - Joe


Quantcast