Testing php mail() in localhost problem.
- by Samir Ghobril
Hey guys, recently I just installed msmtp in linux and I even send a mail from the terminal and it worked:
echo -e "Subject: Test Mail\r\n\r\nThis is a test mail" |msmtp --debug --from=default -t [email protected]
But in php, after editing the php.ini file to have this:
sendmail_path = '/usr/bin/msmtp -t'
and using this piece of code:
<?php
if ( mail ( '[email protected]', 'Test mail from localhost', 'Working Fine.' ) ){
echo 'Mail sent';
}
else{
echo 'Error. Please check error log.';
}
?>
I get the Mail sent message but don't receive a message in my inbox. Not even in the spam folder. Anything wrong I'm doing?