I am using Ubuntu 12.04 and installed PHP5, Apache2. Then I used following php code to send a mail.
<?php
$to = "mymail@gmail.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "mymail@gmail.com";
$headers = "From:" . $from;
if(mail($to,$subject,$message,$headers)){
echo "Mail Sent.";
} else {
echo 'failed';
}
?>
I installed sendmail using apt-get install sendmail and ran above code. And it displays "Mail Sent", but there is no any mail in my inbox. I tried hard to figure the issue but I couldn't. Please help me to send a mail using PHP mail() function.
Edited: I tried with postfix by 'sudo apt-get install postfix'. Then also it displays "Mail Sent", but there is no mails in my inbox.
Thank you..!!