IPWorks S/MIME 2020 Python Edition

Questions / Feedback?

on_end_transfer Event

Fired when the message text completes transferring.

Syntax

class SSMTPEndTransferEventParams(object):
  @property
  def direction() -> int: ...

# In class SSMTP:
@property
def on_end_transfer() -> Callable[[SSMTPEndTransferEventParams], None]: ...
@on_end_transfer.setter
def on_end_transfer(event_hook: Callable[[SSMTPEndTransferEventParams], None]) -> None: ...

Remarks

If message_text is not empty, the on_end_transfer event is fired when the message_text finishes transferring from the local host to the mail_server. If message_text is empty, the event is not fired.

If a file is attached to the message_text via the attached_file property, then on_end_transfer fires again when the file finishes transferring. Please go to the description of the attached_file property for more information.

The Direction parameter shows whether the client (0) or the server (1) is sending the data.

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