Python imaplib fetch body emails gmail

前端 未结 4 977
长发绾君心
长发绾君心 2020-12-14 23:27

I read this already and wrote this script to fetch body for emails in some mail box which title begins with \'$\' and is sent by some sender.

import email, g         


        
相关标签:
4条回答
  • 2020-12-14 23:41
    import datetime
    import email
    import imaplib
    import mailbox
    import re
    
    EMAIL_ACCOUNT = "yourmail@yahoo.com"
    PASSWORD = "password"
    mail = imaplib.IMAP4_SSL('imap.mail.yahoo.com')
    mail.login(EMAIL_ACCOUNT, PASSWORD)
    mail.select('INBOX')
    result, data = mail.search(None, '(FROM "Sender Email")','ALL')
    result, data = mail.search(None, '(SUBJECT "Message")','ALL')
    i = len(data[0].split())
    
    if i == 1:
       latest_email_uid = data[0].split()[0]
       result, email_data = mail.uid('fetch', latest_email_uid, '(RFC822)')
       raw_email = email_data[0][1]
       raw_email_string = raw_email.decode('utf-8')
       email_message = email.message_from_string(raw_email_string)
       body = email_message.get_payload(decode=True)
       for part in email_message.walk():
            if part.get_content_type() == "text/plain":
               emailBody = part.get_payload(decode=True)
               print(emailBody)            
            else:
               continue
    else:
      print('Email NOT ' + EMAIL_ACCOUNT  )
    
    0 讨论(0)
  • 2020-12-14 23:44

    I've managed to get this to work using Gmail, it extracts the useful bits and outputs them to text files:

    import datetime
    import email
    import imaplib
    import mailbox
    
    
    EMAIL_ACCOUNT = "your@gmail.com"
    PASSWORD = "your password"
    
    mail = imaplib.IMAP4_SSL('imap.gmail.com')
    mail.login(EMAIL_ACCOUNT, PASSWORD)
    mail.list()
    mail.select('inbox')
    result, data = mail.uid('search', None, "UNSEEN") # (ALL/UNSEEN)
    i = len(data[0].split())
    
    for x in range(i):
        latest_email_uid = data[0].split()[x]
        result, email_data = mail.uid('fetch', latest_email_uid, '(RFC822)')
        # result, email_data = conn.store(num,'-FLAGS','\\Seen') 
        # this might work to set flag to seen, if it doesn't already
        raw_email = email_data[0][1]
        raw_email_string = raw_email.decode('utf-8')
        email_message = email.message_from_string(raw_email_string)
    
        # Header Details
        date_tuple = email.utils.parsedate_tz(email_message['Date'])
        if date_tuple:
            local_date = datetime.datetime.fromtimestamp(email.utils.mktime_tz(date_tuple))
            local_message_date = "%s" %(str(local_date.strftime("%a, %d %b %Y %H:%M:%S")))
        email_from = str(email.header.make_header(email.header.decode_header(email_message['From'])))
        email_to = str(email.header.make_header(email.header.decode_header(email_message['To'])))
        subject = str(email.header.make_header(email.header.decode_header(email_message['Subject'])))
    
        # Body details
        for part in email_message.walk():
            if part.get_content_type() == "text/plain":
                body = part.get_payload(decode=True)
                file_name = "email_" + str(x) + ".txt"
                output_file = open(file_name, 'w')
                output_file.write("From: %s\nTo: %s\nDate: %s\nSubject: %s\n\nBody: \n\n%s" %(email_from, email_to,local_message_date, subject, body.decode('utf-8')))
                output_file.close()
            else:
                continue
    
    0 讨论(0)
  • 2020-12-14 23:58
    from imap_tools import MailBox
    
    # get all attachments from INBOX and save them to files
    with MailBox('imap.my.ru').login('acc', 'pwd', 'INBOX') as mailbox:
        for msg in mailbox.fetch():
            print(msg.text)
            print(msg.html)
        
    

    This will require external lib, but much simpler.

    https://github.com/ikvk/imap_tools

    0 讨论(0)
  • 2020-12-15 00:06

    You can get the contents of the body by doing any of the following

    msg.as_string()
    str(msg)
    repr(msg)
    

    http://docs.python.org/2.7/library/email.message.html#email.message.Message

    0 讨论(0)
提交回复
热议问题