Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 2.12 KB

SendMailAdv.md

File metadata and controls

37 lines (29 loc) · 2.12 KB

SendMailAdv

Details for an Email

Properties

Name Type Description Notes
subject str The subject or title of the email
body str The main email contents.
var_from EmailAddressName
to List[EmailAddressName] A list of destionation email addresses to send this to
replyto List[EmailAddressName] (optional) A list of email addresses that specify where replies to the email should be sent instead of the from address. [optional]
cc List[EmailAddressName] (optional) A list of email addresses to carbon copy this message to. They are listed on the email and anyone getting the email can see this full list of Contacts who received the email as well. [optional]
bcc List[EmailAddressName] (optional) list of email addresses that should receive copies of the email. They are hidden on the email and anyone gettitng the email would not see the other people getting the email in this list. [optional]
attachments List[MailAttachment] (optional) File attachments to include in the email. The file contents must be base64 encoded! [optional]
id int (optional) ID of the Mail order within our system to use as the Mail Account. [optional]

Example

from openapi_client.models.send_mail_adv import SendMailAdv

# TODO update the JSON string below
json = "{}"
# create an instance of SendMailAdv from a JSON string
send_mail_adv_instance = SendMailAdv.from_json(json)
# print the JSON string representation of the object
print SendMailAdv.to_json()

# convert the object into a dict
send_mail_adv_dict = send_mail_adv_instance.to_dict()
# create an instance of SendMailAdv from a dict
send_mail_adv_form_dict = send_mail_adv.from_dict(send_mail_adv_dict)

[Back to Model list] [Back to API list] [Back to README]