gpt4 book ai didi

python - 使用 Imaplib 在 Python 中访问聊天文件夹

转载 作者:太空宇宙 更新时间:2023-11-03 15:25:14 25 4
gpt4 key购买 nike

我正在尝试使用 imaplib 访问聊天文件夹,但我无法这样做。代码 mail.select("Chats") 不起作用,因为“chats”实际上不是标签。

如何访问聊天文件夹中的电子邮件?

最佳答案

您想通过 imap 访问的任何文件夹。它应该被邮件服务器允许。

例如:对于 gmail,查看下图了解如何设置 imap 的访问权限。

enter image description here

在这里,应该为“聊天”文件夹选中“在 IMAP 中显示”。

然后,尝试以下代码片段:

sock = imaplib.IMAP4_SSL("imap.gmail.com", 993)
sock.login("your Email Id", "Password")
lb_list = sock.list() # print
#search for "Chats" folder and its signature
#here, it is "[Gmail]/Chats"
sock.select("[Gmail]/Chats", True)
sock.search(None, '(ALL)')
resp, data = sock.fetch('1:*', '(RFC822)')

希望对您有所帮助。

关于python - 使用 Imaplib 在 Python 中访问聊天文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8146970/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com