我正在尝试使用以下 python 代码将 pop3 中的所有电子邮件下载到文本文件中:
def Download(pop3,username,password):
try:
Mailbox = poplib.POP3(pop3, '110')
Mailbox.user(username)
Mailbox.pass_(password)
numMessages = len(Mailbox.list()[1])
for i in range(numMessages):
logfile = open(username + '.log', 'a')
logfile.write('\n')
for msg in Mailbox.retr(i+1)[1]:
print msg
logfile.write('%s\n' % (msg))
logfile.close()
Mailbox.quit()
except KeyboardInterrupt:
print 'Exit'
sys.exit(1)
我的问题是电子邮件在 base64 中加密,我如何只调用电子邮件正文进行解密?
base64.b64decode(body)