IPWorks S/MIME 2020 Python Edition

Questions / Feedback?

on_message_part Event

Fired for each message part when FetchMessageInfo is called.

Syntax

class SIMAPMessagePartEventParams(object):
  @property
  def part_id() -> str: ...
  @property
  def size() -> int: ...
  @property
  def content_type() -> str: ...
  @property
  def filename() -> str: ...
  @property
  def content_encoding() -> str: ...
  @property
  def parameters() -> str: ...
  @property
  def multipart_mode() -> str: ...
  @property
  def content_id() -> str: ...
  @property
  def content_disposition() -> str: ...

# In class SIMAP:
@property
def on_message_part() -> Callable[[SIMAPMessagePartEventParams], None]: ...
@on_message_part.setter
def on_message_part(event_hook: Callable[[SIMAPMessagePartEventParams], None]) -> None: ...

Remarks

The PartId parameter denotes the PartId which may be identified in other parts or messages. The format of part id-s is specified by the IMAP RFCs.

The Size parameter gives the size of this part.

The ContentType parameter shows the type of data contained in the part.

The ContentEncoding parameter shows how the data is encoded.

The Filename parameter shows the filename corresponding to the part (if the part was included in the message as an attached file).

The Parameters parameter contains the additional parameters passed to the ContentType header such as the part charset etc.

The MultipartMode parameter shows the how this part relates to the message's whole multipart structure ('mixed', 'alternative', etc.).

The ContentId parameter shows the value of the Content-Id header for the part.

The ContentEncoding parameter shows the value of the Content-Encoding header for the part.

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