Php contact form
Hi
I wonder if anyone can help, I have designed a flash site and its using PHP to parse my contact form,
this is my php
<?php
$sendTo = "degrees28@hotmail.co.uk";
$subject = "Enquiry from Your Website";
$headers = "From: " . $_POST["email"]. "\r\n";
$headers .= "Reply-To: " . $_POST["email"] . "\r\n";
$headers .= "Return-path: " . $_POST["email"]. "\r\n\r\n";
$message = "Company: " . $_POST["message"] . "\r\n" . "Subject: " . $_POST["message2"]. "\r\n" . "Message: " . $_POST["message3"];
mail($sendTo, $subject, $message, $headers);
?>
This does not work , and when i said something to SPRY, they mentioned something about spam????
Can anyone tell me if SPRY uses PHP as a language and why i cant get my form to send in flash???
Thanks
|