I'm trying to send email using mail()
function in php.
I'm on Localhost.
Here is my code :
$result = mail('recipient@gmail.com', 'Hello world', 'Some Message');
var_dump($result);
It gives me this :
bool(false)
I'm facing this from last 2 days, please help !
My configuration of xampp is according to this link.