Top "Imaplib" questions

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

'str' object has no attribute 'decode'. Python 3 error?

Here is my code: import imaplib from email.parser import HeaderParser conn = imaplib.IMAP4_SSL('imap.gmail.com') conn.login(…

python python-3.x imaplib
How to fetch an email body using imaplib in python?

I'd like to fetch the whole message from IMAP4 server. In python docs if found this bit of code that …

python imaplib
Get only NEW Emails imaplib and python

This is a smaller portion of a bigger project. I need to only get unread emails and a parse their …

python imaplib
python imaplib to get gmail inbox subjects titles and sender name

I'm using pythons imaplib to connect to my gmail account. I want to retrieve the top 15 messages (unread or read, …

python gmail imaplib email-headers
Python read my outlook email mailbox and parse messages

Possible Duplicate: Reading e-mails from Outlook with Python through MAPI I am completely new to Python and have been given …

python outlook mapi win32com imaplib
Move an email in GMail with Python and imaplib

I want to be able to move an email in GMail from the inbox to another folder using Python. I …

python gmail imap imaplib
How to read email content in Python 3

I've tried many code to access and read email content, for example, about Gmail i only can do authentication and …

python python-3.x email base64 imaplib
Python imaplib fetch body emails gmail

I read this already and wrote this script to fetch body for emails in some mail box which title begins …

python email request imap imaplib
How to get csv attachment from email and save it

I am trying to get the attachment from an email and save it to a specific folder with the original …

python csv python-2.7 email-attachments imaplib
Get email subject and sender using imaplib?

I am getting the following response after executing the code shown below the response. How can I parse through this …

python imap imaplib