Hi,
I have the following problem. I’m implementing a flash form mailer using PHP to send out the mail. I’m doing this in the actionscript to sed out the data:
_root.mcDataField.loadVariables(“form.php”, “POST”);
Then my PHP script looks like this:
$sendTo = "xyz@server.com";
$subject = “Some title here”;
$headers = "From: " . $_POST[“Name”]. “<” . $_POST[“Email”] . ">
";
$headers .= "Reply-To: " . $_POST[“Email”] . "
";
$headers .= "Return-Path: " . $_POST[“Email”];
$message = $_POST[“Message”];
$retVal = mail($sendTo, $subject, $message, $headers);
When I sendthe data, it gets emailed, but the browser shows (in the bottom left corner): “Waiting for xyz.com”, where xyz.com is the server I have my files on.
Any idea would be greatly appreciated! Thank you!