访问垃圾邮件文件夹

发布于 2024-11-11 15:23:58 字数 232 浏览 4 评论 0原文

我正在编写一个基本的 PHP 电子邮件客户端。到目前为止,我已经使用 fsockopen 编写了一个基本的 POP3 类。到目前为止它效果很好,但我注意到一个很大的限制。 POP3 协议不支持文件夹,这意味着我无法访问 SPAM 文件夹。 hotmail和yahoo的客户端如何访问SPAM文件夹?他们是否将其存储在不同的非 POP3 服务器上?

我发现垃圾邮件文件夹包含在客户端中非常重要,因为一些不值得的电子邮件最终会出现在那里。

I'm in the process of writing a basic PHP email client. So far I've written a basic POP3 class using fsockopen. It works great so far however I'm noticing a big limitation. The POP3 protocol doesn't have support for folders, which means I can't access the SPAM folder. How do hotmail and yahoo's clients access the SPAM folder? Do they store it on a different non-POP3 server?

I find the SPAM folder is important to include in the client as some undeserving emails end up there.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

旧梦荧光笔 2024-11-18 15:23:58

POP3 没有文件夹的概念。它仅用于访问您的收件箱中的内容。对于文件夹,您需要使用 IMAP。

POP3 doesn't have a concept of folders. It's there to access what amounts to your Inbox only. For folders, you need to use IMAP.

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