IPWorks S/MIME 2020 Python Edition

Questions / Feedback?

message_headers_string Property

A string representation of the full headers of the message as retrieved from the server.

Syntax

def get_message_headers_string() -> str: ...

message_headers_string = property(get_message_headers_string, None)

Default Value

""

Remarks

This property contains a string representation of the full headers of the message as retrieved from the server. If the class is not connected, or message_number does not contain a valid message number, the value of this property is an empty string. Otherwise, it contains the full headers of the mail message as reported by the server.

The mail_server is asked about the headers of the message only if the message_number property has changed. If message_number has not changed, the class returns a cached value.

Example (Connect and Retrieve Message)


POPControl.MailServer = "MyPOPServer"
POPControl.User = "username"
POPControl.Password = "password"
POPControl.Connect()

POPControl.MessageNumber = 1
MessageText = POPControl.MessageText
MessageHeadersString = POPControl.MessageHeadersString

This property is read-only.

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