Skip to main content

HTML and text sections

The <html> and <text> sections are where you add the main content of the Email. In addition, you can also choose to enable or disable preferences such as, for example, link tracking, as required.

The <html> and <text> sections are:

The <html> section includes the following children:

ChildTypeDescriptionUse
contentelementContent of the Email.Use separate entries for <html> and/or <text>
preferenceselementDefine the required additional preferences, for example, enable link tracking.Optional

The <text> section includes the following children:

ChildTypeDescriptionUse
contentelementContent of the Email.Use separate entries for <html> and/or <text>
preferenceselementDisable link tracking. Enabled by default.Optional

Example:

    <html>
<content>
See the Email content topic.
</content>
<preferences>
See the Email preferences topic.
</preferences>
</html>
<text>
<content>
See the Email content topic.
</content>
</text>