IPWorks OpenPGP 2020 Python Edition

Questions / Feedback?

send_to Property

A comma separated list of addresses for destinations (required).

Syntax

def get_send_to() -> str: ...
def set_send_to(value: str) -> None: ...

send_to = property(get_send_to, set_send_to)

Default Value

""

Remarks

This property specifies a comma separated list of destinations for the mail message. A copy of the message is sent to each of them, and a To SMTP header is created containing the destination addresses.

Examples of valid addresses are: "Friendly Name" <address@company.com> or address@company.com

The class will fail if the mail_server returns an error code about any email address specified in SendTo or cc but it will silently ignore the error if the same happens with an email address specified in b_cc.

If the resulting header is longer than MaxHeaderLength, then it is folded according to RFC 822 specifications.

NOTE: You must clear the message_recipients properties before setting this property to remove previous recipients.

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