测试网站本地邮件发送
我想测试网站的密码恢复和类似的电子邮件相关功能。
我正在使用 PHP(cakePHP 框架),语法看起来很简单,但我不确定电子邮件服务器的设置。
我四处寻找好的教程,但它们不够具体。
什么是可以在本地使用的快速且简单的邮件服务器?另外...一些启动的初始步骤将不胜感激。
I'd like to test password recovery and similar email related features for a website.
I'm using PHP (cakePHP framework) and the syntax seems easy enough but I'm unsure of the email server setup.
I've looked around for a good tutorial but they aren't specific enough.
What is a quick and easy mail server to use locally? also... some initial steps to start up would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
测试邮件服务器工具
Test Mail Server Tool
xampp 附带一个 smtp 服务器,用于从本地主机发送邮件,请查看 http://www.apachefriends.org
xampp comes with a smtp server for sending mails from localhost, check out http://www.apachefriends.org
我在 Windows 机器上使用 SMTP4DEV 取得了很好的成功。它是开源的。
使用此工具,您可以相当轻松地查看最近的消息。它所需要的只是在您的应用程序中使用 localhost 作为 SMTP 服务器。
I've had good success with SMTP4DEV on a Windows box. It is open source.
You can see recent messages fairly easily with this tool. All it requires is that in your application you use localhost as the SMTP server.
据我所知,PHP 有一个配置文件,其中有一个 SMTP 服务器的条目。您可以获取本地 SMTP 服务器并将 PHP 的 ini 指向本地主机。
在 Windows 上,Microsft Internet Information Server 会有 SMTP,我认为即使是客户端也会有 SMTP 中继(但可能不是完整的服务器)。或者我确信您可以找到许多免费的 SMTP 服务器。
From what I remember PHP has a config file has a entry for the SMTP server. You can get a local SMTP server and point ini for PHP to localhost.
On Windows Microsft Internet Information Server would have SMTP, I think even client will have an SMTP relay (may not be a full server however). or I am sure you can find numeros free SMTP server.
你可以看看 Post Case,虽然我不相信它现在(目前)是免费的 - 它曾经是,或者你可以看看 Hamster 2.1,它是免费的,然后还有 hMailServer 5.x。
You could look at Post Case although I don't believe it is now (currently) free - it used to be, or you could look at Hamster 2.1 which is free, and then there is hMailServer 5.x.