You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I have a Automation rule that sends an email to users when when a ticket is due within 24 hours.
I have the rule set up to send the email, but I need some help with the email itself.
I would like the email header to have the ticket number and ticket title.
In the content field I would like the message to have a link to the ticket, and a have it say they have 24 hours before its due.
Thanks,
Hi Ted,
You can use something like this for the subject:
Ticket {{issue.key}} - {{issue.summary}} has been created
Body:
Write whatever text you like. This would be the link to the card:
<a href="{{issue.toUrl}}">{{issue.summary}}</a>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
One question, issue.toUrl I am assuming I will need to put our instance address in there, or do I just leave it?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you just leave it - it will pick up the right link.
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.
The rule runs and the ticket link is there!
Couple more questions:
Ticket due within next 24 hours ${issue.key} ${issue.summary} That is the email header, how do I get the issue key and summary to actually show the info?
Two, this sends this notification to all of the service desk users group. How can I make this send to just the ticket owner who's ticket is coming due?
Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You should use this for the title and not with the $
{{issue.key}} - {{issue.summary}}
Just send it to the Assignee in the To: field
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.