MessageList Event

Fired when a message is retrieved from the server.

Syntax

class Office365MessageListEventParams {
public:
  const QString &Id();
  const QString &Subject();
  const QString &MessageSender();
  const QString &ReceivedDateTime();
  const QString &SentDateTime();
  bool HasAttachments();
  const QString &BodyContentType();
  const QString &BodyContent();
  const QString &BodyPreview();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void MessageList(Office365MessageListEventParams *e);
// Or, subclass Office365 and override this emitter function. virtual int FireMessageList(Office365MessageListEventParams *e) {...}

Remarks

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

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