cakephp电子邮件组件电子邮件转到hotmail垃圾文件夹

发布于 2024-09-25 05:07:21 字数 182 浏览 2 评论 0原文


我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无人接听 2024-10-02 05:07:22

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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文