Python IMAP 调用

发布于 2024-09-25 18:24:54 字数 74 浏览 4 评论 0原文

我正在使用 imap 库访问 gmail 上的未读邮件并打印出主题,有没有办法确保正在阅读的邮件仍然标记为未读。

谢谢

I am using the imap library to access my unread messages on gmail and to print out the subjects, is there a way to make sure that the messages being read are still tagged as unread.

Thanks

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

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

发布评论

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

评论(2

雪落纷纷 2024-10-02 18:24:54

请改用 PEEK。例如,类似:

typ, data = imap_conn.fetch(uid, '(BODY.PEEK[TEXT])')

Use PEEK instead. For example, something like:

typ, data = imap_conn.fetch(uid, '(BODY.PEEK[TEXT])')
表情可笑 2024-10-02 18:24:54

有关信息,您的问题是这个问题的反问题

使用peek,这样就不会影响邮件。

但您还应该能够将消息标记为看不见。

For info, Yours is an inverse question of this one

Use peek, so that you do not affect the message.

But you should also be able to tag the message as unseen.

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