[% FOREACH ArticleField IN Data.ArticleFields.values.nsort("Prio") %]
[% IF ArticleField.Label == "From" || ArticleField.Label == "To" || ArticleField.Label == "Cc" %]
[% Translate(ArticleField.Label) | html %]:
[% ArticleField.Realname | html %]
[% ELSIF ArticleField.Label == "Subject" %]
[% Translate("Subject") | html %]:
[% ArticleField.Value | html %]
[% END %]
[% END %]
[% FOREACH ArticleField IN Data.ArticleMetaFields %]
[% Translate(ArticleField.value.Label) | html %]:
[% IF ArticleField.value.Link %]
[% ArticleField.value.Value %]
[% ELSE %]
[% ArticleField.value.Value %]
[% END %]
[% END %]
[% IF Data.Attachments && Data.Attachments.size %]
[% Translate("Attachments") | html %]:
[% FOREACH Attachment IN Data.Attachments %]
[% END %]
[% END %]
[% IF Data.HTML %]
[% IF Data.BodyHTMLLoad %]
[% IF Data.BrowserLinkMessage %]
# Show info, that links within the iframe must be clicked with strg/cmd/shift (depending on the used browser and os)
# to open the links in a new window without the security permissions given to the iframe
[% Translate("To open links in the following article, you might need to press Ctrl or Cmd or Shift key while clicking the link (depending on your browser and OS).") | html %]
[% END %]
# Use the HTML5 sandbox attribute to prevent plugins and scripts from being executed in the browser.
# Append session info to URL because IE will not send cookies.
# Set 'allow-popups' to allow IE10+ to open links. ref: http://www.w3.org/html/wg/wiki/ChangeProposals/sandbox_allow_popups
[% ELSE %]
#
[% END %]
[% ELSE %]
[% Data.BodyNote %]
[% Data.Body %]
[% END %]