Top "Imaplib" questions

Python module to provide an Internet Message Access Protocol (IMAP) client implementation.

Unable to retrieve gmail messages from any folder other than inbox (Python3 issue)

Update: my code works under python 2.6.5 but not python 3 (I'm using 3.4.1). I'm unable to search for messages in the "All …

python email python-3.x gmail imaplib
How to read email using Python 3

Now I am here import imaplib mail = imaplib.IMAP4_SSL('imap.gmail.com') mail.login('[email protected]', 'password') mail.…

python email decode imaplib
Extract information from Gmail with Python

I have come through solutions to extract useful information from selected received emails in Gmail mailbox. Aim in this example …

python gmail extract imaplib
How to create an email and send it to specific mailbox with imaplib

I am trying to use python's imaplib to create an email and send it to a mailbox with specific name, …

python imaplib
reading gmail is failing with IMAP

I am running a cron job which executes the python script for reading gmail (2 min interval). I have used imaplib …

python authentication gmail-api imaplib
imaplib.error: command SEARCH illegal in state AUTH, only allowed in states SELECTED

def connect_imap(): m = imaplib.IMAP4_SSL("imap.gmail.com", 993) print("{0} Connecting to mailbox via IMAP...".format(datetime.datetime.today().…

python imaplib
python 3 smtplib exception: 'SSL: WRONG_VERSION_NUMBER' logging in to outlook

The following code in python 3 raises an error on my computer, and I don't know how to log in properly: …

python outlook openssl imaplib
EOF Error in Imaplib

I am programming a python applet that watches the unread count of the email boxes for my workplace, and ran …

python eof imaplib
Python IMAP Search from or to designated email address

I am using this with Gmail's SMTP server, and I would like to search via IMAP for emails either sent …

python imap imaplib
Python imaplib selecting folders

I am bulding a mail client using Django and for extracting emails i'm using imaplib. So far, i can select …

python imaplib