Cloud Mail 2020 Kotlin Edition

Questions / Feedback?

MessageInfo Event

Fired when a message is retrieved from the server.

Syntax

public open class DefaultGmailEventListener : GmailEventListener {
  ...
  public override fun messageInfo(e: GmailMessageInfoEvent) {}
  ...
}

public class GmailMessageInfoEvent {
  val id: String?
  val threadId: String?
  val historyId: String?
  val internalDate: String?
  val subject: String?
  val labels: String?
  val from: String?
  val sentTo: String?
  val cc: String?
  val bcc: String?
  val snippet: String?
  val size: Int
}

Remarks

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

Copyright (c) 2021 /n software inc. - All rights reserved.
Cloud Mail 2020 Kotlin Edition - Version 20.0 [Build 7941]