i am trying to use the flash form but when i click the send button nothing happens
www.periodcollection.com/email2.html
thanks
heres the edited email.php
<?php
$sendTo = "nick@periodcollection.com";
$subject = “My Flash site reply”;
$headers = “From: " . $_POST[“firstName”] .” “. $_POST[“lastname”] . “<” . $_POST[“email”] .”>
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-path: " . $_POST[“email”];
$message = $_POST[“message”];
mail($sendTo, $subject, $message, $headers);
?>