MessagePart Event

Fired when a message part is retrieved from the server.

Syntax

class GMailMessagePartEventParams {
public:
  const QString &Id();
  const QString &AttachmentId();
  const QString &Filename();
  const QString &ContentType();
  int Size();
  const QString &Data();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void MessagePart(GMailMessagePartEventParams *e);
// Or, subclass GMail and override this emitter function. virtual int FireMessagePart(GMailMessagePartEventParams *e) {...}

Remarks

The MessagePartList event is fired for each message part retrieved from the server when ListMessages or ListDrafts is called.

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