Mail form will not send

I made up a little flash site for school, and now it doesn’t want to send the message of the mail form (it uses Php…) If anyone could help I would be very Happy :smiley:

The adress is http://www.geocities.com/nova_college2003/
->just click on invite to see.

(sorry for the geocities adress, but i didn’t have an other webspace availlable!)

The scripts and the php file is from the tutorial about: Flash-Based Email Form Using PHP
http://www.kirupa.com/developer/actionscript/flash_php_email.htm/

I have altered the movie as less as possible to keep it working.

the send buttons actionscript:
[AS]on (release) {
// send variables in form movieclip (the textfields)
// to email PHP page which will send the mail
form.loadVariables(“email.php”, “POST”);
}[/AS]

<?php
/***************************************************\

$sendTo = "gjxpress@hotmail.com";
$subject = “Invitation”;
$headers = “From: " . $_POST[“name”];
$headers .= “<” . $_POST[“email”] .”>
";
$headers .= "Reply-To: " . $_POST[“email”];
$message = $_POST[“message”];

mail($sendTo, $subject, $message, $headers);
?>

$sendTo = "gjxpress@hotmail.com";
$subject = “Invitation”;
$headers = “From: " . $HTTP_POST_VARS[‘name’];
$headers .= “<” . $HTTP_POST[_VARS’email’] .”>
";
$headers .= "Reply-To: " . $HTTP_POST_VARS[‘email’];
$message = $HTTP_POST_VARS[‘message’];

try that instead.

Viru.

The sh*tty thing still won’t work…

I hope that you (or anyone else…) have/has any other ideas…