我一直在研究这个问题并且错过了标记。
我可以通过imaplib连接并获取邮件。
msrv = imaplib.IMAP4(server)
msrv.login(username,password)
# Get mail
msrv.select()
#msrv.search(None, 'ALL')
typ, data = msrv.search(None, 'ALL')
# iterate through messages
for num in data[0].split():
typ, msg_itm = msrv.fetch(num, '(RFC822)')
print msg_itm
print num
但我需要做的是将消息的正文作为纯文本,我认为这适用于电子邮件解析器,但我在使其工作时遇到了问题。
有没有人有我能看到的完整例子?
谢谢,
答案 0 :(得分:9)
要获得电子邮件正文的纯文本版本,我做了类似的事情......
xxx= data[0][1] #puts message from list into string
xyz=email.message_from_string(xxx)# converts string to instance of message xyz is an email message so multipart and walk work on it.
#Finds the plain text version of the body of the message.
if xyz.get_content_maintype() == 'multipart': #If message is multi part we only want the text version of the body, this walks the message and gets the body.
for part in xyz.walk():
if part.get_content_type() == "text/plain":
body = part.get_payload(decode=True)
else:
continue
答案 1 :(得分:1)
以下是docs:
的最小示例import getpass, imaplib
M = imaplib.IMAP4()
M.login(getpass.getuser(), getpass.getpass())
M.select()
typ, data = M.search(None, 'ALL')
for num in data[0].split():
typ, data = M.fetch(num, '(RFC822)')
print 'Message %s\n%s\n' % (num, data[0][1])
M.close()
M.logout()
在这种情况下,data [0] [1]包含消息正文。