我有下面的代碼,從YahooMail獲得的收件箱: -如何在Yahoo郵件中獲取電子郵件地址?
this._store = _session.getStore("imaps");
this._store.connect("imap.mail.yahoo.com", 993, this._uid, this._pwd);
Folder inbox = this._store.getFolder("Inbox");
SearchTerm unread = new FlagTerm(new Flags(Flag.SEEN), false);
IMAPMessage[] msgs = (IMAPMessage[]) inbox.search(unread);
這回我變味精形式的未讀郵件。 我前面有這行代碼與Gmail的工作罰款: -
String ref = msg.getHeader("References")[0];
但是現在有了雅虎,這給了我Null Pointer Exception.
現在的問題是,被引用沒有存儲在郵件標題在YahooMail中,與Gmail不同?