-
Suggestion
-
Resolution: Unresolved
Issue Summary
When using Rich Text as content format in Send Customized email and use the below smart value, then emails are not hyperlinked correctly for Name attribute and the links are directly added like below.
{{#lookupObjects}}[{{name}}|https://instanceName.atlassian.net/jira/assets/object/{{id}}] ,
{{/}}
Email:
[Testing Category 1|https://instanceName.atlassian.net/jira/assets/object/2677][Testing Category 2|https://instanceName.atlassian.net/jira/assets/object/2676]
Steps to Reproduce
- Create an automation rule with lookupObjects actions.
- Use Send customised email component and use Rich Text format with smart value to add Hyperlink to Name attribute.
- Observe the email received with Name and Hyperlink separately
Expected Results
Name should be Hyperlinked with the link stored.
Actual Results
Link is displayed separately and Name separately.
Workaround
- Either use HTML as Content format with below for example
{{#lookupObjects}}
<a href="https://InstanceName.atlassian.net/jira/assets/object/{{id}}">{{name}}</a>,
{{/lookupObjects}}