javamail mark gmail message as read

前端 未结 9 517
陌清茗
陌清茗 2021-01-31 03:13

Note: added after answer: Thanks.. Yeah I had tried the Flag.SEEN to true and saveChanges.. I also had read getContent marks it read. I tried using it in the for statement that

9条回答
  •  借酒劲吻你
    2021-01-31 04:06

    The easiest way to do that is set the folder to be read or written into or from. Means like this...

        Folder inbox = null;
        inbox.open(Folder.READ_WRITE);      
    

    the Folder class should be imported.

提交回复
热议问题