只获取新电子邮件imaplib和python

2024-04-20 03:37:45 发布

您现在位置:Python中文网/ 问答频道 /正文

这是一个更大项目的一小部分。我只需要得到未读的电子邮件和分析他们的标题。如何修改以下脚本以仅获取未读电子邮件?

conn = imaplib.IMAP4_SSL(imap_server)
conn.login(imap_user, imap_password)

status, messages = conn.select('INBOX')    

if status != "OK":
    print "Incorrect mail box"
    exit()

print messages

Tags: 项目脚本ssl标题server电子邮件statuslogin
3条回答

上面的答案实际上已经不起作用了,或者可能从来没有起作用,但是我修改了它,所以它只返回看不见的消息,它曾经给出:error cannot parse fetch command或者类似的东西这里是一个工作代码:

mail = imaplib.IMAP4_SSL('imap.gmail.com')
(retcode, capabilities) = mail.login('email','pass')
mail.list()
mail.select('inbox')

n=0
(retcode, messages) = mail.search(None, '(UNSEEN)')
if retcode == 'OK':

   for num in messages[0].split() :
      print 'Processing '
      n=n+1
      typ, data = mail.fetch(num,'(RFC822)')
      for response_part in data:
         if isinstance(response_part, tuple):
             original = email.message_from_string(response_part[1])

             print original['From']
             print original['Subject']
             typ, data = mail.store(num,'+FLAGS','\\Seen')

print n

我认为错误来自messages[0].split(' '),但是上面的代码应该可以正常工作。

还要注意+FLAGS而不是-FLAGS,它将消息标记为已读。

像这样的事情就行了。

conn = imaplib.IMAP4_SSL(imap_server)

try:
    (retcode, capabilities) = conn.login(imap_user, imap_password)
except:
    print sys.exc_info()[1]
    sys.exit(1)

conn.select(readonly=1) # Select inbox or default namespace
(retcode, messages) = conn.search(None, '(UNSEEN)')
if retcode == 'OK':
    for num in messages[0].split(' '):
        print 'Processing :', message
        typ, data = conn.fetch(num,'(RFC822)')
        msg = email.message_from_string(data[0][1])
        typ, data = conn.store(num,'-FLAGS','\\Seen')
        if ret == 'OK':
            print data,'\n',30*'-'
            print msg

conn.close()

这里还有一个重复的问题-Find new messages added to an imap mailbox since I last checked with python imaplib2?

两个有用的函数用于检索检测到的新邮件的正文和附件(引用:How to fetch an email body using imaplib in python?

def getMsgs(servername="myimapserverfqdn"):
  usernm = getpass.getuser()
  passwd = getpass.getpass()
  subject = 'Your SSL Certificate'
  conn = imaplib.IMAP4_SSL(servername)
  conn.login(usernm,passwd)
  conn.select('Inbox')
  typ, data = conn.search(None,'(UNSEEN SUBJECT "%s")' % subject)
  for num in data[0].split():
    typ, data = conn.fetch(num,'(RFC822)')
    msg = email.message_from_string(data[0][1])
    typ, data = conn.store(num,'-FLAGS','\\Seen')
    yield msg

def getAttachment(msg,check):
  for part in msg.walk():
    if part.get_content_type() == 'application/octet-stream':
      if check(part.get_filename()):
        return part.get_payload(decode=1)
original = email.message_from_string(response_part[1])

需要更改为:

original = email.message_from_bytes(response_part[1])

相关问题 更多 >