【问题标题】:Downloading MMS emails sent to Gmail using Python使用 Python 下载发送到 Gmail 的彩信电子邮件
【发布时间】:2011-11-27 15:33:52
【问题描述】:

所以我尝试了下面的代码,它可以下载附件。问题出在我的 gmail 帐户上,有些电子邮件是通过手机使用 MMS 邮件发送的。来自移动网络 A 的电子邮件附件可以通过以下脚本下载,而来自移动网络 B 的电子邮件附件则无法下载。

以下是完整电子邮件详细信息的链接: http://pastie.org/private/ektv7yfa2xwdqzu77ys5a(来自移动网络A,工作) http://pastie.org/private/cljaaad4tz7v5jra20l0q(来自移动网络 B,失败)

来自:How can I download all emails with attachments from Gmail?

import email, getpass, imaplib, os

detach_dir = '.' # directory where to save attachments (default: current)
user = raw_input("Enter your GMail username:")
pwd = getpass.getpass("Enter your password: ")

# connecting to the gmail imap server
m = imaplib.IMAP4_SSL("imap.gmail.com")
m.login(user,pwd)
m.select("[Gmail]/All Mail") # here you a can choose a mail box like INBOX instead
# use m.list() to get all the mailboxes

resp, items = m.search(None, "ALL") # you could filter using the IMAP rules here (check http://www.example-code.com/csharp/imap-search-critera.asp)
items = items[0].split() # getting the mails id

for emailid in items:
    resp, data = m.fetch(emailid, "(RFC822)") # fetching the mail, "`(RFC822)`" means "get the whole stuff", but you can ask for headers only, etc
    email_body = data[0][1] # getting the mail content
    mail = email.message_from_string(email_body) # parsing the mail content to get a mail object

    #Check if any attachments at all
    if mail.get_content_maintype() != 'multipart':
        continue

    print "["+mail["From"]+"] :" + mail["Subject"]

    # we use walk to create a generator so we can iterate on the parts and forget about the recursive headach
    for part in mail.walk():
        # multipart are just containers, so we skip them
        if part.get_content_maintype() == 'multipart':
            continue

        # is this part an attachment ?
        if part.get('Content-Disposition') is None:
            continue

        filename = part.get_filename()
        counter = 1

        # if there is no filename, we create one with a counter to avoid duplicates
        if not filename:
            filename = 'part-%03d%s' % (counter, 'bin')
            counter += 1

        att_path = os.path.join(detach_dir, filename)

        #Check if its already there
        if not os.path.isfile(att_path) :
            # finally write the stuff
            fp = open(att_path, 'wb')
            fp.write(part.get_payload(decode=True))
            fp.close()

【问题讨论】:

    标签: python imaplib


    【解决方案1】:

    失败的电子邮件没有在附件的标题中设置 Content-Disposition,因此您将跳过它。看起来您将不得不稍微放松检查 Content-Disposition 的 if 语句。

    也许您也可以看看 Content-Type 是否为 image/jpeg 并使用它。

    【讨论】:

      猜你喜欢
      • 2020-07-12
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-09-28
      • 2015-01-16
      • 2017-04-01
      • 2018-01-26
      • 2019-09-22
      相关资源
      最近更新 更多