I have tried to send mail using the php mail() function, and I added a test case as follows:
$mail_sent = mail( $to, $subject, $message, $headers );
echo $mail_sent ? "Mail sent" : "Mail failed";
and the output is "Mail Sent", yet I receive nothing on the email specified in the $to...