当前位置:  开发笔记 > 编程语言 > 正文

如何确定电子邮件是否为Base64编码?

如何解决《如何确定电子邮件是否为Base64编码?》经验,为你挑选了1个好方法。

我很难确定文本电子邮件的正文是否为base64编码.如果它然后使用这行代码; 利用jython 2.2.1

dirty=base64.decodestring(dirty)

否则继续正常.

这是我的代码.哪些代码行允许我从电子邮件中提取此内容:

"Content-Transfer-Encoding:base64"

import email, email.Message
import base64

def _get_email_body(self):
    try:
        parts=self._email.get_payload()
        check=parts[0].get_content_type()
        if check=="text/plain":
            part=parts[0].get_payload()
            enc = part[0]['Content-Transfer-Encoding']
            if enc == "base64":
                dirty=base64.decodestring(dirty)
        elif check=="multipart/alternative":
            part=parts[0].get_payload()
            enc = part[0]['Content-Transfer-Encoding']
            if part[0].get_content_type()=="text/plain":
                dirty=part[0].get_payload()
                if enc == "base64":
                    dirty=base64.decodestring(dirty)
            else:
                return "cannot obtain the body of the email"
        else:
            return "cannot obtain the body of the email"
        return dirty
    except:
        raise

好了,这个代码现在可以使用!谢谢大家



1> Harley Holco..:

尝试:

enc = msg['Content-Transfer-Encoding']

这是一个标题,所以你将无法看到它的身体.你应该能够找到你找到主题的同一个地方.

推荐阅读
携手相约幸福
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有