Ciao a tutti,
ho creato un'automazione per cui dopo una ricerca (lookup), possa mandare una mail con questo codice:
<table>
<{{#issue.keys}}>
<tr>
<td>{{customfield_10250}}</td>
<td>{{key}}</td>
<td>{{summary}}</td>
<td>{{assignee.displayName}}</td>
<td>{{duedate}}</td>
<td>{{priority}}</td>
</tr>
<{{/#issue.keys}}>
</table>
Dopo vari tentativi, mi da sempre questo errore "Errore di rendering dei valori intelligenti durante l'esecuzione di questa regola: Closing tag (#issue.keys) does not match opening tag (issue.keys):"
Avete suggerimenti?
Ciao
Prova questo codice:
<table>
<{{issue.key}}>
<tr>
<td>{{key}}</td>
<td>{{summary}}</td>
<td>{{assignee.displayName}}</td>
<td>{{duedate}}</td>
<td>{{priority}}</td>
</tr>
</{{issue.key}}>
</table>
L'ho testato e funziona. Manda la mail.
Ho qualche dubbio sul #issue.keys. Ho controllato la documentazione ma non ho trovato questa possibilità.
Spero sia utile
FABIO
Ora mi manda la mail ma vuota (dovrebbero esserci 6 ticket)
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.