来自localhost的php mail()

时间:2018-05-09 09:22:19

标签: php email

我在localhost(WAMP)有一个网站,我正在尝试发送邮件。我已经在php.ini文件中进行了正确的配置,但仍然显示错误。

enter image description here

enter image description here

我已经检查了其他主题,但没有一个答案可以解决我的问题:(所以,如果有人可以帮助我,谢谢!)

PS:我是第一次使用PHP发送邮件。

1 个答案:

答案 0 :(得分:0)

您的SMTP服务器需要身份验证。尝试将auth配置添加到php.ini并重新启动服务器:

auth_username=yourUsername
auth_password=yourPassword

配置和发送电子邮件的简单方法可能是使用第三方库,例如PHPMailer。

这是一个教程:https://www.smtp2go.com/setupguide/php_mailer/