Hi,
I want to configure Jira to send an email reminder once per day with all tickets on the done column. Also, i don't know if is possible send it to several people from the team.
You can create a JQL filter save it and set up a subscription to run daily and email a group of people. I’m unsure why you would want to do so for Done but nonetheless something like this...
project = abc and status = Done
now if you want to only show Done in the last 24h then...
project =abc and status changed to Done after startOfDay(-1d)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.