0
Sending email
How to sending email in localhost php?
3 Réponses
+ 5
You could use the php mail() function but it doesn't work on every email.
Hotmail needs SMTP authetication so use PHPMailer instead.
https://stackoverflow.com/questions/22371724/sending-mail-in-php-using-hotmail-smtp
mail() function should work fine on gmail and you can try that but for public website I don't recommend it.
+ 2
I use hmailserver...
https://www.hmailserver.com/
You can set it up to use mail() with no authentication for localhost.
+ 1
Wow thank you very much bro