Python exchangelib 读取子文件夹中的邮件

Python exchangelib read mails in subfolder

我想阅读outlook邮箱子文件夹中的邮件。

Inbox
├──myfolder

我可以使用 account.inbox.all() 阅读收件箱,但我想阅读 myfolder

中的邮件

我尝试了此页面 folder 部分中的内容,但无法正确处理

https://pypi.python.org/pypi/exchangelib/

您需要先获取 myfolderFolder 实例:

my_folder = account.inbox / 'myfolder'
for i in my_folder.all():
    print(i.subject)

如果您的目录中有很多子文件夹(包括嵌套的),并且您想打印所有子文件夹的主题,请使用此方法。

folder = account.root/'Top of Information Store'/'Inbox'/folder_name
all_folders = folder.glob('**/*')
for subfolders in all_folders:
    for emails in subfolders.all():
        print(emails.subject)