I would like to have JIRA send out a daily email notification to the assignee and product owner given the following conditions:
Product type = x and y
Status = Opened or Assigned
for all tickets in Opened/Assigned state for more than 2 days (with a Begin date=Creation date).
Is there a plug-in or a feature that needs to be turned on ? Thanks in advance. Jeanette
Hi Jeanette,
Have you explored using issue filter subscriptions to do this? You might be able to get close to what you want.
For example, a filter using the JQL below would show, for each user, 'Open' issues assigned which were created more than 2 days ago (since the start of current day):
assignee = currentUser() AND status = "Open" AND createdDate < startOfDay(-2)
You could:
I hope that helps you a bit.
I haven't covered emailing the product owner, because I don't know how you have this set up in JIRA. Is it one fixed person all the time (perhaps the project lead?) or does it vary issue by issue?
Sam
thanks, Sam. I am currently asking my JIRA admin for "Manage Group Filter Subscriptions' global permission which I believe is required for me to subscribe other people within a group address.
Can you pls confirm that with the assignee = currentUser() and setting the receiver=group of users that each user will get an email listing the tickets assigned to them and not all the tickets assigned to the entire group of people?
Thanks again.
Jeanette
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jeanette,
Yes. When you have assignee = currentUser(), each recipient will only get emailed with the issues assigned to them.
It's mentioned on the page I linked to:
Sam
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.
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.