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
Hello!
I am trying to create a rule for a project that should send an email to the reporter at the DueDate chosen by him but at a time that I want to default.
For instance, the reporter will choose a date like tomorrow but I want the email that will be sent by automation will be sent at 5 pm.
Is this possible?
Yes,
All you need to do is run a scheduled rule each day when you want to send the email.
Then use the JQL "duedate = endOfDay()" inside of the Scheduled trigger to pull issues that are due today.
Hey David!
There may be anoter/better way to do this, but I have similar requirements in a couple projects and I solved using the below automation.
You can create a scheduled automation that runs every evening at 5pm. You can use a JQL query to pull relevant tickets like only ones that are not closed and/or don't have a resolution. Then create a variable. I call mine {{DueDateCompare}} = {{now.diff(issue.duedate).days}}.
Then create an If block and set your requirements like: Status != Closed and {{DueDateCompare}} = 0.
You can then craft your email gets sent based on the above section results.
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.