emailTemplateDto Data Type

The Class EmailTemplateDto.

Namespace
(Default)
Available Since
Jun 3, 2016 4:49:13 AM
Properties
name data type type namespace min/max occurs constraints description
htmlContent string element 0/1   The html content.
subject string element 1/1 required The subject.
textContent string element 0/1   The text content.
Properties inherited from messageTemplateDto
code string attribute 1/1   The code
description string attribute 0/1   The description
id long attribute 0/1   The id.
auditable auditableDto element 0/1    
auditableField auditableFieldDto element 0/unbounded    
endDate dateTime element 0/1   The end date.
startDate dateTime element 0/1   The start date.
tagEndDelimiter string element 0/1   The tag end delimiter.
tagStartDelimiter string element 0/1   The tag start delimiter.
type messageTemplateTypeEnum element 0/1   The type.
updatedCode string element 0/1   The updated code.

Example

<EmailTemplate code="..." description="..." id="...">
  <subject>...</subject>
  <htmlContent>...</htmlContent>
  <textContent>...</textContent>
  <auditable created="..." creator="..." updated="..." updater="..."/>
  <auditableFields>
    <auditableField actor="..." changeOrigin="..." code="..." created="..." currentState="..." description="..." entityClass="..." fieldName="..." id="..." originName="..." previousState="...">
      <auditable/>
      <auditableFields>
        <auditableField/>
      </auditableFields>
      <updatedCode>...</updatedCode>
    </auditableField>
  </auditableFields>
  <tagStartDelimiter>...</tagStartDelimiter>
  <updatedCode>...</updatedCode>
  <tagEndDelimiter>...</tagEndDelimiter>
  <startDate>...</startDate>
  <endDate>...</endDate>
  <type>...</type>
</EmailTemplate>