Name | Type | Description | Notes |
---|---|---|---|
To | []SendSmtpEmailTo1 | List of email addresses and names (optional) of the recipients. For example, [{"name":"Jimmy", "email":"jimmy98@example.com"}, {"name":"Joe", "email":"joe@example.com"}] | [default to null] |
Params | map[string]interface{} | Pass the set of attributes to customize the template. For example, {"FNAME":"Joe", "LNAME":"Doe"}. It's considered only if template is in New Template Language format. | [optional] [default to null] |
Bcc | []SendSmtpEmailBcc | List of email addresses and names (optional) of the recipients in bcc | [optional] [default to null] |
Cc | []SendSmtpEmailCc | List of email addresses and names (optional) of the recipients in cc | [optional] [default to null] |
ReplyTo | *SendSmtpEmailReplyTo1 | [optional] [default to null] | |
Subject | string | Custom subject specific to message version | [optional] [default to null] |
HtmlContent | string | HTML body of the message. Mandatory if 'templateId' is not passed, ignored if 'templateId' is passed | [optional] [default to null] |
TextContent | string | Plain Text body of the message. Ignored if 'templateId' is passed | [optional] [default to null] |