SMTP 和 PHP 问题
我已经为 Windows 64 位设置了 WAMP,并尝试使用 mail()
函数 将电子邮件从我的本地主机发送到另一个邮件服务器(例如 Gmail 或 Hotmail)。
问题出在 PHP 和 SMTP 连接上。我收到以下错误消息:
验证您的 smtp 和端口 25。
谁能告诉我导致此错误的原因以及如何修复它?
I have setup WAMP for Windows 64-bit and am trying to use the mail()
function
to send an email from my local host to another mail server (for example, Gmail or Hotmail).
The problem is in PHP and SMTP connection. I get the following error message:
Verify your smtp and port 25.
Can anyone tell me what is causing this error and how I can fix it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当使用 mail() 时,PHP 期望找到在本地主机上运行的邮件服务器。你可能没有那个。您可以尝试使用 PHPMailer 代替。
配置将如下所示:
When using mail(), PHP expects to find a mailserver running on localhost. You probably don't have that. You can try using PHPMailer instead.
The configuration would then look something like this: