GOAL: Configure a custom email (via scriptrunner postfunction rule) to render a custom field in rich text. i.e. have the custom field display in the email the same way it does when viewing it in a Jira issue.
Configuration thus far: Email template successfully pulls custom field value into email using the below script:
<% out <<
${helper.render(issue.getCustomFieldValue(
com.atlassian.jira.component.ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("Development Details")))}
%>
After looking at the adaptavist scriptrunner documentation it looks like you are able to have a field render in the rich text by using the following (example using description field):
${helper.render(issue.description)}
How can I apply this helper.render script to the custom field value above?
Additional Info:
- Custom email is setup with HTML text
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.