Hello all,
I have created an automated action for sending an email with the above values but the Smart values: Epic, Priority and Custom Field(Worked Today) are empty in the email although I have put values in the issue in Jira. This is how I have set up the e-mail structure:
This is the daily work log report.
{{#lookupIssues}}
* Issue Key: <b>{{key}}</b> (<a>{{url}}</a>)
* Summary: <a>{{Summary}}</a>
* Assignee: <c>{{assignee.displayName}}</c>
* Epic: <d>{{issue.epic.Epic Name}}</d>
* Priority: <e>{{issue.field.priority.name}}</e>
* Hours Worked Today: <f>{{issue.customfield_10063}}</f>
{{/}}
Can you help me, please?
Thank you.
I think I understand the issue here. The source of your email message is a lookup issues action. You start pulling in the values from the lookup issue but then pivot to the current issue. I think you want to do something like this:
This is the daily work log report.
{{#lookupIssues}}
* Issue Key: <b>{{key}}</b> (<a>{{url}}</a>)
* Summary: <a>{{Summary}}</a>
* Assignee: <c>{{assignee.displayName}}</c>
* Epic: <d>{{epic.Epic Name}}</d>
* Priority: <e>{{priority.name}}</e>
* Hours Worked Today: <f>{{customfield_10063}}</f>
{{/}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Zacharoula,
So the other fields have values in them? But for the same issue just these fields don't?
If so, try these:
{{issue.Epic Name}}
{{issue.priority.name}}
{{issue.customfield_10063.value}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, @zacharoula_brinia. Unfortunately, I do not know this area very well. However, I am confident there are community members who do and will respond 🤞
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.