IPWorks EDI 2020 Python Edition

Questions / Feedback?

on_message_info Event

Fired with information for the message(s) retrieved by the server.

Syntax

class IMAPMessageInfoEventParams(object):
  @property
  def message_id() -> str: ...
  @property
  def subject() -> str: ...
  @property
  def message_date() -> str: ...
  @property
  def from_() -> str: ...
  @property
  def flags() -> str: ...
  @property
  def size() -> int: ...

# In class IMAP:
@property
def on_message_info() -> Callable[[IMAPMessageInfoEventParams], None]: ...
@on_message_info.setter
def on_message_info(event_hook: Callable[[IMAPMessageInfoEventParams], None]) -> None: ...

Remarks

The on_message_info event is fired when messages are searched, listed, or message information is received.

Id is the Id of the message.

Subject is the message subject.

MessageDate is the date of the message.

From is the email address of the sender.

Flags is a list of flags associated with this message.

Size is the size of the message.

More information may be received from the respective properties, such as: message_content_type, message_content_encoding, message_recipients, message_delivery_time, message_flags, message_headers, message_in_reply_to, message_net_id, message_reply_to, message_sender, message_size, message_subject, message_text, etc.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks EDI 2020 Python Edition - Version 20.0 [Build 8203]