IMAP bekommen, Absender-name und-text?

Ich bin mit diesem code:

import imaplib
mail = imaplib.IMAP4_SSL('imap.gmail.com')
mail.login(myusername, mypassword)
mail.list()
# Out: list of "folders" aka labels in gmail.
mail.select("inbox") # connect to inbox.

result, data = mail.search(None, "ALL")

ids = data[0] # data is a list.
id_list = ids.split() # ids is a space separated string
latest_email_id = id_list[-1] # get the latest

result, data = mail.fetch(latest_email_id, "(RFC822)") # fetch the email body (RFC822) for the given ID

raw_email = data[0][1] # here's the body, which is raw text of the whole email
# including headers and alternate payloads

print raw_email

und es funktioniert, außer wenn ich drucken raw_email es gibt eine Reihe von zusätzlichen Informationen, wie kann ich analysieren, pro sagen, der zusätzliche Informationen und erhalten nur die Von Körper und text?

InformationsquelleAutor Sam Tubb | 2013-10-23

Schreibe einen Kommentar