检测并从电子邮件中提取附件。在python中使用imap

时间:2012-07-11 08:14:01

标签: python email imap

我在python imap库文档中找不到有关提取和检测电子邮件附件的信息。 在阅读消息的标题时,我看到了关键字'附件''类型'等等。但我想知道是否有通往天堂的直路(电子邮件附件边界和数据提取)

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

外部库:https://github.com/ikvk/imap_tools

from imap_tools import MailBox

# get all attachments from INBOX and save them to files
with MailBox('imap.my.ru').login('acc', 'pwd', 'INBOX') as mailbox:
    for msg in mailbox.fetch():
        for att in msg.attachments:
            print(att.filename, att.content_type)
            with open('C:/1/{}'.format(att.filename), 'wb') as f:
                f.write(att.payload)