Well i show with phpinfo.php
that my server has phpv4.3.2 so i followed the instructions of my musicman referred to nubian
and now i recieve no email at all!!!!!!!
I show that the problem is in the php code because i had loaded from flash another php file that sends a test email and it worked!!!
Here is my code:
<?
// data coming in from the movie
$Email = $_POST[Email];
$FirstName = $_POST[FirstName];
$Company = $_POST[Company];
$ToComments = $_POST[ToComments];
$HearAbout = $_POST[HearAbout];$ToEmail = "
ght@fg.fgf";
$ToName = "fadada";
$ToSubject = "dadada";
// next line is a recommended change if your "comments" field is multiline
$ToComments = str_replace("\r", "\n", $ToComments);$EmailBody = "Sent By: $FirstName\nSenders Email: $Email\nSenders Company: $Company\n\nMessage Sent:\n$ToComments\n\nSender Heard About Site From: $HearAbout\n";
$EmailFooter="\nThis message was sent by: $FirstName from $REMOTE_ADDR If you feel that you recieved this e-mail by accident please contact us at
www.dadadd.com";
$Message = $EmailBody.$EmailFooter;
mail($ToEmail,$ToSubject, $Message, "From: ".$FirstName." <".$Email.">");
Print "&_root.Mail.Status=Complete - Your mail has been sent&";
(i use Status and not EmailStatus)
?>