Skip to content

Instantly share code, notes, and snippets.

@philshem
Created September 1, 2020 07:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save philshem/4ee388f7dc045366c16eb9730ca630a9 to your computer and use it in GitHub Desktop.
Save philshem/4ee388f7dc045366c16eb9730ca630a9 to your computer and use it in GitHub Desktop.
refactor stackoverflow answer to read unread emails and also fix for loop https://stackoverflow.com/a/53827775/2327328
import imaplib
import email
# adapted from: https://stackoverflow.com/a/53827775/2327328
def read_email_from_gmail():
mail = imaplib.IMAP4_SSL('imap.gmail.com')
mail.login('MYEMAIL','MYSECRET')
mail.select('inbox')
result, data = mail.search(None, '(UNSEEN)')
mail_ids = data[0]
id_list = mail_ids.split()
for _, i in enumerate(id_list):
# need str(int(i))
result, data = mail.fetch(str(int(i)), '(RFC822)' )
for response_part in data:
if isinstance(response_part, tuple):
# from_bytes, not from_string
msg = email.message_from_bytes(response_part[1])
email_subject = msg['subject']
email_from = msg['from']
print ('From : ' + email_from + '\n')
print ('Subject : ' + email_subject + '\n')
# nothing to print here
read_email_from_gmail()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment