PHP Mailing Problem

Hello,

I’ve been using a server to test a site, which has PHP 4.4.1. All the mailing forms work perfectly. Have just uploaded it to the actual server and one of the forms doesn’t work. The PHP file is below:

<?php

$sendTo = “%&$&^@$&%&%^&.co.uk”;
$subject = “Website Booking Enquiry”;

$headers = “From: " . $_POST[“name”] .” “. $_POST[“lastname”] . “<” . $_POST[“email”] .”>
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-path: " . $_POST[“email”];

$name = $_REQUEST[“name”];
$company = $_REQUEST[“company”];
$address = $_REQUEST[“address”];
$email = $_REQUEST[“email”];
$tel = $_REQUEST[“tel”];
$act = $_REQUEST[“act”];
$date = $_REQUEST[“date”];
$time = $_REQUEST[“time”];
$type = $_REQUEST[“type”];
$vname = $_REQUEST[“vname”];
$city = $_REQUEST[“city”];
$cost = $_REQUEST[“cost”];
$marketing = $_REQUEST[“marketing”];
$other = $_REQUEST[“other”];

    $body= "Contact :  " . $name . "

";
$body .= "Company : " . $company . "
";
$body .= "Address : " . $address . "
";
$body .= "Email : " . $email . "
";
$body .= "Tel : " . $tel . "
";
$body .= "Act : " . $act . "
";
$body .= "Date : " . $date . "
";
$body .= "Time : " . $time . "
";
$body .= "Type : " . $type . "
";
$body .= "Venue : " . $vname . "
";
$body .= "City : " . $city . "
";
$body .= "Budget : " . $cost . "
";
$body .= "Marketing : " . $marketing . "
";
$body .= "Other : " . $other . "
";

mail($sendTo, $subject, $body, $headers);

?>

Any Ideas - ?

It wasn’t the script it was a flash issue (proceeding before it had chance to POST the data).