I cannot seem to get this email script to work
<?
$Name = $POST["name"];
$Email = $POST["email"];
$Message = $POST["message"];
$ToEmail = "contact@quiztimewales.com";
$ToName = "Quiz Time Wales";
$ToSubject = "Website Email";
$Location = $POST["Location"];
$EmailBody = "\nName:$Name\nLocation: $Location\nMessage: $Message";
$Message = $EmailBody;
mail($ToName." <".$ToEmail.">",$ToSubject, $Message, "From: ".$Name." <".$Address.">");
?>
It is for www.quiztimewales.com (the contact page)
However, even thought he script will now work if you go direct
www.quiztimewales.com/emailscript.php
It will only send me a blank email (obviously) as all of the variables are included when the user types in the fields in the flash file
I have never had any problems making flash email forms before
(Other than the fact that it wonβt send to hotmail accounts!)
As the way I made this form is identical to that on my website
www.tobeon.co.uk
And that form works with no problem at all
Thanking you in advance
Tobeon