How to configure WAMP (localhost) to send email using Gmail?
Gmail servers use SMTP Authentication under SSL or TLS. I think that there is no way to use the mail() function under that circumstances, so you might want to check these alternatives: PEAR::Mail phpMailer Nette\Mail They all support SMTP auth under SSL. You’ll need to enable the php_openssl extension in your php.ini. Additional Resources: How … Read more