How can I send reminder emails to jira assignee if no action was taken with in 24 hours from the time it was assigned? Appreciated your help!
First, define a filter that matches the issues to email people about, save it and share it.
Now, you need to decide between
A minor addition to what Nic already said. If your filter can include the condition assignee == currentUser(), then the subscription emails will include only those issues which are assigned to that individual. Then if you have a group which include everyone in the project, you can create a group subscription for this email and JIRA will mail only those people who have assigned issues.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
One problem is that it will run the query for everyone in the project. This could hammer your performance.
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.