Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 2.17 KB

SendEmail.md

File metadata and controls

18 lines (13 loc) · 2.17 KB

SendEmail

Properties

Name Type Description Notes
emailTo List<String> List of the email addresses of the recipients. For example, ['[email protected]', '[email protected]'].
emailBcc List<String> List of the email addresses of the recipients in bcc [optional]
emailCc List<String> List of the email addresses of the recipients in cc [optional]
replyTo String Email address which shall be used by campaign recipients to reply back [optional]
attachmentUrl String Absolute url of the attachment (no local file). Extension allowed: xlsx, xls, ods, docx, docm, doc, csv, pdf, txt, gif, jpg, jpeg, png, tif, tiff, rtf, bmp, cgm, css, shtml, html, htm, zip, xml, ppt, pptx, tar, ez, ics, mobi, msg, pub and eps [optional]
attachment List<SendEmailAttachment> Pass the list of content ( byte array which is encoded to base64 chunk data at our end ) and name of the attachment. For example, [{"content":"byte array content 1", "name":"attcahment1"}, {"content":"byte array content 2", "name":"attcahment2"}]. [optional]
headers Object Pass the set of headers that shall be sent along the mail headers in the original email. 'sender.ip' header can be set (only for dedicated ip users) to mention the IP to be used for sending transactional emails. Headers are allowed in `This-Case-Only` (i.e. words separated by hyphen with first letter of each word in capital letter), they will be converted to such case styling if not in this format in the request payload. For example, {"Content-Type":"text/html", "charset":"iso-8859-1", "sender.ip":"1.2.3.4"} [optional]
attributes Object Pass the set of attributes to customize the template. For example, {"FNAME":"Joe", "LNAME":"Doe"} [optional]
tags List<String> Tag your emails to find them more easily [optional]