I want to set up an automated email that will send you an email for the upcoming due dates in the beginning of the week for things that are due that week. for example I want to send out an individual email to each assignee on Monday of all of the issues they have due that week. I want each individual assignee to only get the issues due to them in that week.
You can create a saved filter with a query something like:
assignee = currentUser() and dueDate > startOfWeek() and dueDate < startOfWeek("7d")
and then subscribe it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.