我試圖做一個簡單的程序來檢查並顯示未讀消息,但我在嘗試獲取主題和發件人地址時遇到問題。 對於寄件人我試過這個方法: import email
m = server.fetch([a], ['RFC822'])
#a is variable with email id
msg = email.message_from_string(m[a], ['RFC822'])
print msg['f
我最近開始使用imapclient爲了從我的雅虎取回電子郵件。帳戶。該計劃相對簡單。它如下: yahoo=imap.IMAPClient('imap.mail.yahoo.com', ssl=True)
yahoo.login('myusername', 'mypassword')# cant tell you my username and password, can I?
yahoo.se