i want to send feild valuse with email in table
i use this code:
<table>
<tbody>
<tr>
<th>Heading 1</th>
<th>Heading 2</th>
</tr>
{{#issues}}
<tr>
<td>Custom field name 1</td>
<td>{{issue.custom_field_1.value}}</td>
</tr>
<tr>
<td>Custom field name 2</td>
<td>{{issue.custom_field_2.value}}</td>
</tr>
{{/}}
</tbody>
</table>
from Dexter de Vera
but i do not know how to replace my custom field with {{issue.custom_field_1.value}}
Hi @Rasa
These two documentation pages may help with your rule:
Finding the smart values (or custom field ID) for a field: https://confluence.atlassian.com/automation/find-the-smart-value-for-a-field-993924665.html
Using the bulk-handing, plural {{issues}} smart value in a rule: https://confluence.atlassian.com/automation/run-a-rule-against-issues-in-bulk-993924653.html
Also, I note the rule outline you show is creating two rows for each issue. Is that what you intended?
Finally, if that does not help, please provide more context by posting:
Kind regards,
Bill
First you need to find the custom field id for your field by follow the below steps:
Setting (cog) -> Issue -> custom field -> search for your custom field -> click on three dots and select field context, you will find the field custom field id in the URL of the page, like customFieldId=XXXX.
once you have the field id, you can send it's value like below:
{{customfield_XXXX.value}}
I hope this helps with your query
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.