[SIZE=2][COLOR=Black]Hello all… sorry to bother you guys. but im having a problem with my created php flash emailer… i have followed the tutorial ([/COLOR][/SIZE][SIZE=2][COLOR=Black][FONT=Verdana][SIZE=4] [SIZE=2]Flash[/SIZE][/SIZE][/FONT][/COLOR][FONT=Verdana][SIZE=2][COLOR=Black]-Based[/COLOR][/SIZE][/FONT][SIZE=2][FONT=Verdana][COLOR=#003366][COLOR=Black] Email Form Using PHP )… Uploaded the flash file and php file to my server… both files are in the same folder…
i then build my site with dreamweaver
my site is www.armsarm.com … it seems to work but doesnt send anything…
my sites hosting allows php.
could someone take a look at my file and let me know if there is anything wrong…
here is the php code:
<?php
$sendTo = "korabolex@hotmail.com";
$subject = “Flash Email Form”;
$headers = "From: " . $_POST[“name”];
$headers .= “<” . $_POST[“email”] . ">
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-Path: " . $_POST[“email”];
$message = $_POST[“message”];
mail($sendTo, $subject, $message, $headers);
?>
thanks for your help
[/COLOR][/COLOR][/FONT][/SIZE][/SIZE]