cakephp电子邮件组件电子邮件转到hotmail垃圾文件夹
我正在使用 CakePHP 1.3 的内置电子邮件组件,似乎我所有的电子邮件都进入了 hotmail 垃圾文件夹。
你们中有人知道如何更改才能使 Hotmail 认为这不是垃圾邮件吗?如果你们中的一些人遇到了同样的问题,我们将非常感谢您提供有关他们所做的事情或尝试解决该问题的一些反馈。
干杯,
尼古拉斯.
I am using the built-in email component of CakePHP 1.3, and it seems that all my emails go to the hotmail junk folder.
Does any of you know what to change to make Hotmail thinking this is NOT a spam? If some of you experienced the same issue, some feedback on what they've done or tried to fix it would be much appreciated.
Cheers,
Nicolas.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Cake 只是使用 PHP 内置的 mail() 工具。如果没有任何进一步的设置,您的邮件将不会由正确的 MX 服务器传递,而是 sendmail 二进制文件直接连接到远程主机上的 SMTP 端口并尝试传递。
您会发现设置这样的垃圾邮件发送设施是多么容易。由随机机器而不是适当的邮件服务器发送的邮件很可能被归类为垃圾邮件。
请网络服务器管理员设置从服务器发送邮件。或者,您可以使用任何受信任的 SMTP 服务器发送邮件(例如 google)。
Cake simply uses the PHP built-in mail() facility. Without any further setup your mail is not going to be delivered by a proper MX server but rather the sendmail binary connects directly to the SMTP port on the remote host and attempts to deliver.
You see how easy it is to set up a spam sending facility like this. Mails delivered by a random machine instead of a proper mail server are very likely to be classified as spam.
Ask the web server admin to set up mail sending from the server. Alternatively you could use any trusted SMTP server to send mail (e.g. google).