Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

JETI's Field Picker drop down allows you to select system or custom field and get the snippet of Velocity markup needed to extract the value of the field. However it does not render the complete HTML structure that you may need to keep the correct layout of the HTML content in your email body.

The reason for this is that when you develop a new template you may want to have your custom HTML structure and layout.

If you develop a template based on JETI's or Jira's default templates, you can use the below HTML markup to add your fields:

Code Block
languagehtml/xml
titleHTML markup to add fields to your email templates
#if($!issue.getCustomFieldValue('customfield_12345'))
<tr>
    <th>
        Name of the customfield_12345:
    </th>
    <td>
		#renderCustomField($issue, 'customfield_12345')
    </td>
</tr>
#end

...

titleAdd Rich Text (jEditor rendered) Field

 JEditor allows you to enter rich text content in custom fields. In order to render Rich Text fields in email in Jira 6.x and later versions, you must add this:

Code Block
#set ($fieldValueInHtml = $!jetiFieldRenderer.renderCustomField($issue, 'customfield_12345'))
$fieldValueInHtml

...

Redirect
filename
locationhttps://docs.meta-inf.hu/email-this-issue-for-jira-server-data-center/documentation/outgoing-emails/email-templates/adding-fields-to-email-templates

Thank you for visiting our old product documentation site. Note that we no longer store or update our documentation here.

Please navigate to our new documentation site and update your bookmarks accordingly. If you're looking for the former content of this page, click here.