我如何确定电子邮件是否为Base64编码?
作者:互联网
我很难确定文本电子邮件的正文是否为base64编码.
如果是,则使用以下代码行;
利用jython 2.2.1
dirty=base64.decodestring(dirty)
否则照常继续.
这是我有atm的代码.哪行代码可以让我从电子邮件中提取出来:
“内容传输编码: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
好的,此代码现在有效!谢谢大家
解决方法:
尝试:
enc = msg['Content-Transfer-Encoding']
这是一个标题,因此您将无法看到它.您应该能够在找到主题的地方.
标签:encoding,email,jython,email-headers,python 来源: https://codeday.me/bug/20191024/1921843.html