有人使用 CakePHP 电子邮件组件设置 DKIM 吗?
有没有人使用内置电子邮件组件在 CakePHP 应用程序中成功设置“域密钥识别邮件”?
我正在尝试实现 Jeff Atwood 的垃圾邮件防护帖子的第二部分:
http://www.codinghorror.com/blog/2010/04/so-youd-like-to-send-some-email-through-code.html
我在网上找不到任何好的教程或示例代码来执行此操作。我也不确定我是否从正确的角度来处理这个问题。 (可能是盒子上的邮件服务器本身应该签署所有出站电子邮件,而不是应用程序?)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
让邮件服务器本身对电子邮件进行签名,您就走上了正确的道路。这肯定有助于保持事情干燥,特别是当您有多个应用程序使用同一邮件服务器时。
我考虑过在 Cake 上做同样的事情,经过大量研究后,我确定让第三方处理要容易得多(很多)你的电子邮件。我推荐 PostmarkApp 甚至亚马逊的新 简单电子邮件服务,具有免费套餐(每天 2,000 封免费电子邮件),可以覆盖您的整个申请。
You're on to the right path with having the mail server itself sign the emails. That will certainly help keep things DRY, especially if you have more than one application using the same mail server.
I've looked into doing the same thing from Cake and after a lot of study I determined that it was a lot (a lot) easier to let a third-party handle your emails. I'd recommend PostmarkApp or even Amazon's new Simple Email Service which has a free tier (2,000 free emails per day) which may cover the entirety of your application.