Hi all,
I would like to receive notifications when the due date of an issue is near. How can I do it? It has to be configured in each project?
Thanks :)
Hello @Carlota Vendrell
You can create a filter with issues having due date near and then configure a subscription for that filter.
https://confluence.atlassian.com/adminjiracloud/managing-shared-filters-818578900.html
So you can create a filter like (issues due in next 5 days)
duedate < startOfDay(5d) and duedate > startOfDay()
This gives issues with due date in next 5 days, and you can have a subscription around this filter.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
You would need to create a filter with a JQL like this:
duedate < 4d
This JQL will return all issues which are due in the nearest 4 days.
Then create a filter subscription to get the results of the filter by mail. You can find more info about subscriptions here:
https://confluence.atlassian.com/jira064/receiving-search-results-via-email-720416706.html
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.