Cloud Mail 2020 Kotlin Edition

Questions / Feedback?

MessageList Event

Fired when a message is retrieved from the server.

Syntax

public open class DefaultOffice365EventListener : Office365EventListener {
  ...
  public override fun messageList(e: Office365MessageListEvent) {}
  ...
}

public class Office365MessageListEvent {
  val id: String?
  val subject: String?
  val messageSender: String?
  val receivedDateTime: String?
  val sentDateTime: String?
  val hasAttachments: Boolean
  val bodyContentType: String?
  val bodyContent: String?
  val bodyPreview: String?
}

Remarks

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

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