创建真正安全的 php mail() 函数的最简单方法(或最简单的库)是什么?
mail() 函数很糟糕,因为它对标头的处理过于宽松,以至于您几乎无法在不让自己或其他人遭受垃圾邮件的情况下将其与任何用户输入一起使用。那么,仍然可以确保其使用安全的最简单的替代品是什么?
理想情况下,可以包含在外部文件中。
The mail() function is bad, because it is so permissive with headers that you pretty much can't use it with any user input without subjecting yourself or others to spam. So what is the simplest substitute that can still ensure that it's use is secure?
Ideally something that can be included in an external file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://swiftmailer.org/ 似乎是目前最流行的 PHP OO 解决方案
http://swiftmailer.org/ seems to be the most popular PHP OO solution currently