ok, i tryied all them tutorials and this is what is on my flash button actio
ns,
on (release) {
form.loadVariables("email.php","POST");
}
i then have a php page named email, and this is the code
<?php
$sendTo = "sexydan66666@hotmail.co.uk";
$subject = "My Flash site reply";
$headers = "From: " . $_POST["firstName"] ." ". $_POST["lastname"] . "<" .
$_POST["email"] .">\r\n";
$headers .= "Reply-To: " . $_POST["email"] . "\r\n";
$headers .= "Return-path: " . $_POST["email"];
$message = $_POST["message"];
mail($sendTo, $subject, $message, $headers);
?>
all my variables are set correct etc, but my email doesent recieve any email
,
could any one explain why?
|