trying to send out a simple email and it wont work on the cpanel server. tested a REALLY simple script on a few other servers without a problem. here is the php code im testing:
<?php
$to = "eric@_______.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "someonelse@example.com";
$headers = "From: $from";
$worked = mail($to,$subject,$message,$headers);
if($worked) {
echo "Mail Sent.";
} else {
echo "Mail Not Sent.";
}
?>
any ideas on what is going on?



LinkBack URL
About LinkBacks
Reply With Quote




