为 php 邮件设置 SMTP
可能的重复:
php邮件的smtp配置
我是一个新手程序员,我尝试做一个软件,其中 通过电子邮件发送确认。我使用 WAMp 服务器并使用 Php 作为我的语言。我知道我必须设置我的 smtp,以便我可以发送电子邮件,但我不知道该怎么做。我使用 Windows 7 64 位操作系统。希望有人能给我一个逐步的教程。谢谢你!
Possible Duplicate:
smtp configuration for php mail
Im a newbie programmer and im try to do a software that includes sending confIrmation through email. Im using WAMp server and using Php as my language. I know i have to setup an my smtp so i can send emAils but i have no idea how to do it. Im using windows 7 64bit os. Hope someone can give me a step by step tutorial of this. Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
安装 XAMPP 是在 Windows 上设置 LAMP 堆栈的最简单方法。它带有一个 SMTP 服务器。
Installing XAMPP is the easiest way to setup a LAMP stack on Windows. It comes with an SMTP server.
以下是如何执行此操作的一个很好的演练:
http://php.net/manual/ en/ref.mail.php
这里的一个关键是,如果您想使用本地 SMTP 服务器,您要么必须运行一个(值得怀疑),要么您应该安装适用于此类型的测试服务器之一使用的。
如果您需要 SMTP 服务器测试工具,我使用此站点中的免费 SMTP 服务器工具:
http://www.softstack。 com/
它是免费的、易于使用且简单的。对于发展,我不能要求更多。
Here is a good walkthrough of how to do this:
http://php.net/manual/en/ref.mail.php
The one key here is that if you want to use a local SMTP server, you either have to have one running (doubtful) or you should install one of the test ones available for this type of use.
If you need a SMTP server test tool, I use the Free SMTP Server tool from this site:
http://www.softstack.com/
It is free, easy to use, and simple. For development, I can't ask for more.