Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 1.67 KB

File metadata and controls

22 lines (18 loc) · 1.67 KB

ElasticEmail.Model.EmailContent

Proper e-mail content

Properties

Name Type Description Notes
Body List<BodyPart> List of e-mail body parts, with user-provided MIME types (text/html, text/plain etc) [optional]
Merge Dictionary<string, string> A key-value collection of custom merge fields, shared between recipients. Should be used in e-mail body like so: {firstname}, {lastname} etc. [optional]
Attachments List<MessageAttachment> Attachments provided by sending binary data [optional]
Headers Dictionary<string, string> A key-value collection of custom e-mail headers. [optional]
Postback string Postback header. [optional]
EnvelopeFrom string E-mail with an optional name to be used as the envelope from address (e.g.: John Doe <email@domain.com>) [optional]
From string Your e-mail with an optional name (e.g.: John Doe <email@domain.com>)
ReplyTo string To what addresses should the recipients reply to (e.g. John Doe <email@domain.com>) [optional]
Subject string Default subject of email. [optional]
TemplateName string Name of template. [optional]
AttachFiles List<string> Names of previously uploaded files that should be sent as downloadable attachments [optional]
Utm Utm [optional]

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