I have been trying to send email using php, I am able to send email when I try to run code on Linux but unable to run it on windows 8, I have XAMPP installed on my windows. Here is the code.
<?php
$msg = "Checking Email";
$msg = wordwrap($msg,70);
mail("myemailaddress","My subject",$msg);
?>
I look online and found out that I have to edit php.ini and sendmail.ini file. I am not sure though that this is the right solution. If it is, can anyone please tell me what exactly do I have to edit or change it, because I tried to edit those files but it still not working.
Thanks