I tested sending email using php.
<?
$to = "55555@ho5555ail.com";
$from_header = "From: administrator@mew333.com";
$subject = "Test Email";
$contents = "Test PHP Email";
mail($to, $subject, $contents, $from_header);
?>
It worked, so problem from the script itself? any one can help.?