Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 733 Bytes

File metadata and controls

28 lines (22 loc) · 733 Bytes

SendX::RestETemplate

Properties

Name Type Description Notes
name String Template name
subject String Email subject line
html_content String HTML email content [optional]
text_content String Plain text content [optional]
preheader String Preview text [optional]
tags Array<String> Template tags for organization [optional]

Example

require 'sendx-ruby-sdk'

instance = SendX::RestETemplate.new(
  name: Welcome Email Template,
  subject: Welcome to {{company_name}}!,
  html_content: null,
  text_content: null,
  preheader: null,
  tags: null
)