Hi, I am trying to use jira automation to send email to the team members who have tickets nearing the duedate and separate email for the overdue tickets.
To do so, I made two automation
1. email sent for tickets that has due date of less than 2 days
2. email sent for tickets that has due date passed.
The second one works without a problem, but I have a problem with the first one.
cron : 0 0 8 ? * 2-6 *
JQL : status!="done" AND assignee!="empty"
{{issue.duedate.jiraDate}}
less than
{{now.plusDays(3).jiraDate}}
------------------------------------------up to this part works well
But the problem was that this function also sends emails to the overdue ticket, so team members were getting 2 emails for the same ticket.
So I added the second condition------------------------------------------------------
{{issue.duedate.jiraDate}}
greater than
{{now.jiraDate}}
After I added the AND : Advanced compare condition, it no longer sends emails to anybody.
I double-checked that there are tickets that meet the criteria by using the following JQL on my board.
status!="done" AND assignee!="empty" AND duedate<= 2d AND duedate >= now()
there are at least 30 tickets
I appreciate any input.
Thank you.
As I understand you get the right set of issues when filtering with this JQL:
status!="done" AND assignee!="empty" AND duedate<= 2d AND duedate >= now()
So you can try using the same JQL inside the CRON trigger instead of using status!="done" AND assignee!="empty" .
If you want to filter issues with separate action, you can run the same query inside If condition within the rule.
Hope this helps.
Hello @Jihoon Kim _김지훈_
Welcome to the Atlassian community.
Can you share with us the details of the Audit Log for an execution of the rule where there were issues that met the conditions but no email was sent?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can also accomplish that by using Jira automation also:
Test it before of sending actual emails to people. Hope that helps you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please read the post thank you.
I am not just trying to send an email. (I can do that already)
what I am trying to do is to figure out why
{{issue.duedate.jiraDate}}
less than
{{now.plusDays(3).jiraDate}}
{{issue.duedate.jiraDate}}
greater than
{{now.jiraDate}}
These two condition does not work
my intention is to send an email for the ticket that has duedate between today ~ the day after tomorrow.
but not for the one with over the duedate.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Jihoon Kim _김지훈_ -- Welcome to the Atlassian Community!
You could do this with a saved filter and subscription (Without automation):
project = myProject AND duedate = startOfDay("+10d")
To learn more about filter subscriptions and advanced JQL, please look here:
Cheers !!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.