MessageInfo Event

Fired when a message is retrieved from the server.

Syntax

public class DefaultGmailEventListener implements GmailEventListener {
  ...
  public void messageInfo(GmailMessageInfoEvent e) {}
  ...
}

public class GmailMessageInfoEvent {
  public String id;
  public String threadId;
  public String historyId;
  public String internalDate;
  public String subject;
  public String labels;
  public String from;
  public String sentTo;
  public String cc;
  public String bcc;
  public String snippet;
  public int size;
}

Remarks

The MessageList event is fired for each folder retrieved from the server when ListMessages or ListDrafts is called.

Copyright (c) 2022 /n software inc. - All rights reserved.
Cloud Mail 2020 Java Edition - Version 20.0 [Build 8308]