Hello,
I miss a variable to refer to the parent ticket after merging tickets.
Our users are complaining that they cannot find the ticket history after merging.
I would like to add a link to the parent ticket in the merge notification via triggers.
I have not found this in the documentation and also not here via the search
Best
Kai-Uwe
Hi @kub0711 . There is no variable that you could use for this use case.
Is there any other way to inform the user about merging?
We have many users, who don’t look in the ticket itself and just reply to mail.
Hi, there are received merge
and merged into
conditions available in triggers, maybe you need to play around with it.
1 Like
In addition to this, there are notifications sent out automatically IMO.
Maybe this is enough, but for sure, this needs to be activated within the notifications. They should be part of Ticket update
.
Another ticket was merged into ticket (#{ticket.title})
<div>Hi #{recipient.firstname},</div>
<br>
<div>
Another ticket was merged into ticket (#{ticket.title}) by "<b>#{current_user.longname}</b>".
</div>
<br>
<div>
<a href="#{config.http_type}://#{config.fqdn}/#ticket/zoom/#{ticket.id}" target="zammad_app">View this in #{config.product_name}</a>
</div>
Ticket (#{ticket.title}) was merged into another ticket
<div>Hi #{recipient.firstname},</div>
<br>
<div>
The ticket (#{ticket.title}) was merged into another ticket by "<b>#{current_user.longname}</b>".
</div>
<br>
<div>
<a href="#{config.http_type}://#{config.fqdn}/#ticket/zoom/#{ticket.id}" target="zammad_app">View this in #{config.product_name}</a>
</div>
1 Like