Skip to content

Latest commit

 

History

History
56 lines (50 loc) · 2.8 KB

File metadata and controls

56 lines (50 loc) · 2.8 KB

UltracartClient::TransactionEmail

Properties

Name Type Description Notes
content String Actual template contents [optional]
esp_domain_uuid String The uuid of the sending domain [optional]
esp_friendly_name String Friendly from that will appear in customer email clients. [optional]
esp_user String The username of the sending email. This is not the full email. Only the username which is everything before the @ sign. [optional]
file_exists Boolean An internal identifier used to aid in retrieving templates from the filesystem. [optional]
file_name String File name [optional]
group String Group [optional]
handlebar_variables Array<String> Handlebar Variables available for email template [optional]
invalid Boolean Invalid will be true if the template cannot compile [optional]
last_modified String Last modified timestamp [optional]
library_item_oid Integer If this item was ever added to the Code Library, this is the oid for that library item, or 0 if never added before. This value is used to determine if a library item should be inserted or updated. [optional]
options Array<TransactionEmailOption> Options that help govern how and when this template is used [optional]
path String directory path where template is stored in file system [optional]
size String Size of file in friendly description [optional]
store_front_fs_directory_oid Integer Internal identifier used to store and retrieve template from filesystem [optional]
store_front_fs_file_oid Integer Internal identifier used to store and retrieve template from filesystem [optional]
subject String Subject [optional]
syntax_errors String Any syntax errors contained within the tempalate [optional]
template_path_relative_path String Internal value used to locate the template in the filesystem [optional]
theme_relative_path String Theme relative path in the filesystem. [optional]

Example

require 'ultracart_api'

instance = UltracartClient::TransactionEmail.new(
  content: null,
  esp_domain_uuid: null,
  esp_friendly_name: null,
  esp_user: null,
  file_exists: null,
  file_name: null,
  group: null,
  handlebar_variables: null,
  invalid: null,
  last_modified: null,
  library_item_oid: null,
  options: null,
  path: null,
  size: null,
  store_front_fs_directory_oid: null,
  store_front_fs_file_oid: null,
  subject: null,
  syntax_errors: null,
  template_path_relative_path: null,
  theme_relative_path: null
)