使用 WAMP 设置从本地主机发送电子邮件 SMTP
我正在尝试配置我的 php.ini 文件,以便我可以使用 PHP 从我的开发环境中的“localhost”发送电子邮件。我无法再访问开放的 SMTP 服务器,并且 Gmail 也无法再使用其新的 SSL 设置。我已经做了很多研究,并在这里和其他地方看到了很多“解决方案”,但它们不起作用。我尝试安装本地 SMTP 服务器(hMailServer 要求输入密码才能安装,免费 SMTP 服务器不起作用,等等)。
有谁知道我可以在 php.ini 文件中设置免费的 SMTP 服务器,或者以任何其他方式从本地主机发送邮件(我只需要它用于测试目的)。当我切换到生产环境时,我不想更改代码并以完全不同的方式发送电子邮件。 (我正在使用 Zend 和 Zend_Mail 类)
I'm trying to configure my php.ini file so I can send emails from 'localhost' in my dev environment using PHP. I no longer have access to an open SMTP server, and Gmail no longer works with their new SSL setup. I've done a lot of research and seen lots of "solutions" here and elsewhere, but they don't work. I've tried installing local SMTP servers (hMailServer asks for a password to install, Free SMTP Server doesn't work, etc).
Does anyone know of a free SMTP server I can setup in my php.ini file, or any other way to send mail from localhost (I just need it for testing purposes). I don't want to have to change code and send emails in a completely different way when I switch to production. (I'm using Zend and the Zend_Mail class)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
XAMP、WAMP 等解决方案。
下载hMailServer;然后配置程序:
如果您需要使用另一台计算机的 FROM 收件人发送邮件,则需要允许从外部帐户到外部帐户的投递。为此,请按照下列步骤操作:
如果您使用 Gmail 帐户,则需要进行小修改:
Solution for XAMP, WAMP or etc..
download hMailServer; Then configure program:
If you need to send mail using a FROM addressee of another computer, you need to allow deliveries from External to External accounts. To do that, follow these steps:
If you use Gmail account, then need small modification :
您必须使用此配置来传输邮件
;
它会起作用的。
You will have to use this confuguration for the transport of the mail
;
and it will works.
您可以尝试使用 Zend_Mail_Transport_File 进行测试。
You could try using Zend_Mail_Transport_File for testing instead.
在 Windows 中,我通常使用 Mercury 从本地主机发送电子邮件以进行测试。 Mercury 对于非商业用途是免费的,并且也在 xampp 中使用。
In windows I was usually using Mercury to sent emails from localhost for testing purposes. Mercury is free for non-commercial use and it is also used in xampp.