Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 151179
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T09:24:31+00:00 2026-05-11T09:24:31+00:00

How do I connect to Gmail and determine which messages have attachments? I then

  • 0

How do I connect to Gmail and determine which messages have attachments? I then want to download each attachment, printing out the Subject: and From: for each message as I process it.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T09:24:31+00:00Added an answer on May 11, 2026 at 9:24 am

    Hard one 🙂

    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() 

    Wowww! That was something. 😉 But try the same in Java, just for fun!

    By the way, I tested that in a shell, so some errors likely remain.

    Enjoy

    EDIT:

    Because mail-box names can change from one country to another, I recommend doing m.list() and picking an item in it before m.select('the mailbox name') to avoid this error:

    imaplib.error: command SEARCH illegal in state AUTH, only allowed in states SELECTED

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to connect to a Microsoft SQL 2005 server which is not
I'm trying to connect to Gmail through IMAP with PHP running in Apache. This
I'm trying to connect to gmail pop server from a phplist installation and it
I'm having difficulty getting python 2.4 to connect to gmail's smtp server. My below
I have a PHP mail script that successfully sends emails to everything BUT GMail
I sometimes get Host is unresolved: imap.gmail.com:993 when I try the javamail/gmail store.connect in
Hy, I have an application that sends mails with Gmail SMTP server (smtp.gmail.com) using
I followed this thread to connect to gmail to send email without user intervention:
I'm behind a proxy and can't connect with TcpClient to GMail's POP3. I get
i got a code from here to download gmail inbox: http://davidwalsh.name/gmail-php-imap use these 2

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.