How can I set ( in case can) in the Jira automation to send a person an email with a table built consisting of specific chosen fields ( and info from them) from the request.
Hi Vera,
You will have to use the Send email action in your automation rule.
This type of actions supports HTML tags so you could builld a table in html and include the data with smart values.
A simple example:
<table>
<tr>
<td>Issue key</td>
<td>{{issue.key}}</td>
</tr>
<tr>
<td>Summary</td>
<td>{{issue.summary}}</td>
</tr>
</table>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.