Hi, im doing the flash based email thing as seen here.
i did it all, but when i take the finished product,m and hit send, it does nothing. please help. i am attaching the .fla file alonng with this, but not the .php. here is what is on hte .php
<style type="text/css">
<!--
body {
background-color: #000000;
}
-->
</style>
<title>Contact Naaman</title><div align="center"></div>
<?php
$sendTo = "[email="naaman@atomicmatches.com"]naaman@atomicmatches.com[/email]";
$subject = "Contact From Website";
$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);
?>
<div align="center"></div>
thank you for looking