PHP mail() not enabled
I see that mail() is not enabled on bannermanbooks.com. Please see this link and you can check its code too.
http://******.com/test.php
ini_set( 'display_errors', 1 );
error_reporting( E_ALL );
$from = "[email protected]";
$to = "[email protected]";
$subject = "PHP Mail Test script";
$message = "This is a test to check the PHP Mail functionality";
$headers = "From:" . $from;
if( mail($to,$subject,$message, $headers)){
echo "Test email sent";
}else{
echo 'not sent';
}
http://******.com/test.php
ini_set( 'display_errors', 1 );
error_reporting( E_ALL );
$from = "[email protected]";
$to = "[email protected]";
$subject = "PHP Mail Test script";
$message = "This is a test to check the PHP Mail functionality";
$headers = "From:" . $from;
if( mail($to,$subject,$message, $headers)){
echo "Test email sent";
}else{
echo 'not sent';
}