hi i need some help i can already send mail through command line with this
cat sample_email.txt | msmtp --debug -a gmail [email protected]
but when i try in php iam not recieving any email
here is my code:
<?php
if(mail("[email protected]","A Subject Here","Hi there,\nThis email was sent using PHP's mail function."))
print "Email successfully sent";
else
print "An error occured";
?>
can somoene have a solution on this iam not getting any errors it prints "Email sent successfully" but iam not recieving any.