网站上联系表格的邮件服务器模拟
我意识到我需要使用邮件服务器以便人们可以联系我,我的问题是,如何在本地计算机上设置一个邮件服务器以便我可以测试它?
我已经使用 PHPMyAdmin 安装了 XAMPP,我只是在玩弄和学习它。
现在,在我的生产服务器中,我应该使用什么电子邮件向我发送用户评论?我真的很新,需要一些指导。
I realize that I need to use a mailserver so people can contact me, my question is, how can I set one up on my local machine so I can test it?
I have XAMPP installed with PHPMyAdmin and I'm just toying and learning with it.
Now, in my PRODUCTION server, what email should I use to send users comments to me? I'm really new and need some guidance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一般来说,我不建议您在本地计算机上设置邮件服务器只是为了测试。
查看 PHP 函数 mail(),它应该已经配置好了并准备好在生产服务器上运行。
如果您想测试脚本是否有效,只需打印出要传递给
mail()
的参数即可。Generally I don't recommend you setting up a mailserver on your local machine just for testing.
Check out the PHP function mail(), it should be already configured and ready to run on the production server.
If you want to test if your script works, simply print out the arguments you would pass to
mail()
.假设您的生产服务器运行 Linux,您可以使用 sendmail 二进制文件或本地 smtp。
Assuming your production server is running linux, you can use the sendmail binary or local smtp.