如何使用javamail android读取gmail的Sent Mails

时间:2013-02-01 00:31:31

标签: android gmail-imap javax.mail

如何从Gmail的Sent Mail文件夹中获取邮件?我可以使用

从收件箱中收到邮件
store = imapSession.getStore("imaps");
store.connect("imap.gmail.com", user, password);
Folder folder = store.getFolder("Inbox");

我试过了,

Folder folder = store.getFolder("Sent");
//and
Folder folder = store.getFolder("AllMail");

但这些都没有用,我得到了FolderNotFoundException

1 个答案:

答案 0 :(得分:1)

发送,草稿等的GMail文件夹以标签[Gmail]为前缀,因此对于已发邮件,它将被访问,如下所示:

Folder folder = store.getFolder("[Gmail]/Sent Mail");

链接:
Gmail folders in your mail client