Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Can't get no email to show
#1
Quote:So I have this simple program that checks my email
everything is working the way it should

I would like to have it print there are no new messages
but for some reason I can't get it to work
I have tried all kinds of if not scenarios
even message count
with no luck

I would appreciate any help
on why I can't get this to work
can someone please show me what I am doing wrong


try:
    with MailBox(IMAP_SERVER).login(MAIL_USERNAME, MAIL_PASSWORD, "Inbox") as mb:
        """ checks the status of the inbox """
        stat = mb.folder.status("Inbox")
        """ shows the number of unscene emails """
        label_header1.insert(END, mb.folder.get() + f" - {stat['UNSEEN']}")
        for msg in mb.fetch(criteria="UNSEEN", limit=7, reverse=True, mark_seen=False):
            my_listbox1.insert(END, " " + msg.from_values.name)
            my_listbox1.itemconfig(END, fg="#660000")
            my_listbox2.insert(END, " " + msg.subject)
            my_listbox2.itemconfig(END, fg="#006600")
            #print(msg.subject, msg.date, msg.flags, msg.text, msg.uid)
except imap_tools.errors.MailboxLoginError:
    label_header1.insert(END, "AUTHENTICATION FAILED Invalid credentials "
                              "(Failure: check your username or password)")
except imaplib.IMAP4.error:
    label_header1.insert(END, "LOGIN command FAILED: check your username or password")
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  PIL Image im.show() no show! Pedroski55 2 2,011 Sep-12-2022, 10:19 PM
Last Post: Pedroski55
  PIL Image im.show() no show! Pedroski55 6 11,028 Feb-08-2022, 06:32 AM
Last Post: Pedroski55
  An email with inline jpg cannot be read by all email clients fpiraneo 4 5,302 Feb-25-2018, 07:17 PM
Last Post: fpiraneo
  Email - Send email using Windows Live Mail cyberzen 2 6,967 Apr-13-2017, 03:14 AM
Last Post: cyberzen

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020