Name | Type | Description | Notes |
---|---|---|---|
template_type | TemplateType | [optional][default to 'RawHTML'] | |
name | String | Template name | [optional] |
date_added | Time | Date of creation in YYYY-MM-DDThh:ii:ss format | [optional] |
subject | String | Default subject of email. | [optional] |
body | Array<BodyPart> | Email content of this template | [optional] |
template_scope | TemplateScope | [optional][default to 'Personal'] |
require 'ElasticEmail'
instance = ElasticEmail::Template.new(
template_type: null,
name: null,
date_added: null,
subject: Hello!,
body: null,
template_scope: null
)