I have a filter which returns overdue issues and sends email notification to the PM group. Jira allows only one user/group to be selected as the recepient. Is it possible to select the Assignee in addition to a user group as the recepients?
May be I will explain a bit more. You need two filters and two subscriptions
Filter 1
Fiilter 2
Thanks mate. It seems to be working now. The mistake which I made last time was that all the possible users were not added to the development group. It works now and sends the email notification to the respective assignee only.
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.
@Renjith Pillai Hi Renjith, many thanks for your answer.
Can you please explain where to enter the filter?
best
Karima
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What we used to do was to create the filter with Assignee as 'Current User' and create the subscription for the group that includes all the people in the project. With this, Jira will create customized emails with the issues valid only for each individual and sends out the notification. If you want some other group to receive all the overdue issues create another filter without the 'Current User' criteria and create another subscription for that group.
Another feature that may come handy in this case is to define the second filter first and then create the first filter (including the 'Current User' criteria) by mentioning filter = <<id of the filter create in the above step>> in the JQL query. With this you will avoid repeating the selection criteria of the issues twice.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Renjith but let me clarify my question a bit further.
My filter query is [duedate < now() and resolution is empty] which I have configured to run everyday at a particular time. It works fine as it returns all the issues which are past their due date for all assignees and sends the email to the PM group but my requirement is to additionally send the automated email to the respective assignees as well telling them about the issues which are assigned to them which are overdue instead of the Project manager manually forwarding the list of oustanding issues to each assignee every day.
I tried your suggestion by modifying the query to [duedate < now() and resolution is empty and assignee=currentUser()] but it doesn't work. Am I missing something here.
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.