• 元宇宙:本站分享元宇宙相关资讯,资讯仅代表作者观点与平台立场无关,仅供参考.

几行 Python 代码实现邮件解析,超赞~

  • AI科技大本营
  • 2022年1月26日05时
作者 |Yunlor
来源 | CSDN博客

前言

如何通过python实现邮件解析?邮件的格式十分复杂,主要是mime协议,本文主要是从实现出发,具体原理可以自行研究。

一、安装

通过mailgun开源的Flanker库实现邮件解析。该库包含了邮件地址解析和邮件mime格式解析。
输入以下命令:
pip install flanker

二、代码实现

1.邮件头

def emlAnayalyse(path):    with open(path, 'rb') as fhdl:        raw_email = fhdl.read()        eml = mime.from_string(raw_email)        subject = eml.subject        eml_header_from = eml.headers.get('From')        eml_header_to = eml.headers.get('To')        eml_header_cc=eml.headers.get('Cc')        eml_time = eml.headers.get('Date')        # get_annex(eml, '1')        eml_attachs=attachEml1(eml)        eml_body = contentEml(eml)        f = HTMLFilter()        f.feed(eml_body)        print(f.text)        def main():    path='邮件名.eml'    emlAnayalyse(path)    if __name__ == "__main__":    main()
其中eml.header包含发送人,收件人,抄送人,时间等头信息。

2.邮件正文

# 邮件正文def contentEml(eml):    # 判断是否为单部分     if eml.content_type.is_singlepart():        eml_body = eml.body    else:        eml_body = ''        for part in eml.parts:            # 判断是否是多部分            if part.content_type.is_multipart():                eml_body = contentEml(part)            else:                if part.content_type.main == 'text':                    eml_body = part.body    return eml_body
通过回调函数,取出邮件正文部分

3.邮件附件

def attachEml1(eml):    for part in eml.parts:        if not part.content_type.is_multipart():                name = part.detected_file_name             with open(name, 'wb') as annex:                annex.write(part.body)
通过content_type.is_multipart()判断是否为附件,将其保存下来。

总结

邮件解析基本内容就介绍完了,有需要的小伙伴可以多多交流!!!

技术

100行python代码制作鞭炮

资讯

大型模型语言能够理解吗?

技术

31个好用的Python字符串方法

资讯

游戏圈地震级消息,微软收购动视暴雪


分享

点收藏

点点赞

点在看

Copyright © 2021.Company 元宇宙YITB.COM All rights reserved.元宇宙YITB.COM