Php mailer problem!

hi all

i have followed the tutorial on kirupa site done by Senocular.
the thing is that i have a main.swf on my website and what i want to do is, when i press a button to load externally the phpMailer.swf(this is the php mailer of senocular). Ok basically now i get the effect that i wanted, it loads great but…i fill out the form and when i press send the animation that follows dosent play, meaning to me that the data was not sent :sigh: .
i have a server that supports php so it cant be that, ive also name my php file mail.php so i think ive done that right too. do i need to name it mail.php3?? the other thing is, which is wierd is that when i test the phpMailer.swf on my hard disk by pressing control+enter it works, i fill the form and press send which plays the animation and i get my mail too :smirk: . so why isnt it working when online? although when i test my main.swf on my hard disk, when the phpMailer loads it dosent work again!! is it maybe because of it loading externally which is the problem??.

my php file looks like this:

<?php
$sendTo = “info@mywebsite.co.uk”;
$subject = “3D Animation Submission”;
$headers = “From: " . $_POST[“name”];
$headers .= “<” . $_POST[“email”] .”>
";
$headers .= "Reply-To: " . $_POST[“email”];
$message1 = $_POST[“link”];
$message2 = $_POST[“message”];
mail($sendTo, $subject, "$message1

$message2", $headers);
?>

and thats all i can say for now of info.
plz help :slight_smile:

balroo :bounce: