Send Email To Reporter, Asignee, Watchers If No Update Is Made To A "Blocker" Ticket Each 1 Days Until Resolved

Behnam Rezaei February 23, 2014

Greetings,

I am attempting to create email notifications with the following logic:

If ticket_status=open and ticket_priority=blocker and update_date<=today-1day send an email.

I have created a custom notification, but am unclear how to specify the criteria for notifications Reporter, Assignee, Watchers to be notified each day until a "blocker" bug is resolved.

Thanks

1 answer

0 votes
Henning Tietgens
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 24, 2014

You have to create a filter to find the issues and a subscription for this filter. In the filter you have to select something like this

status = Open and priority = Blocker and updated &lt; startOfDay(-1) and (reporter = currentUser() or assignee = currentUser() or watcher = currentUser())

Suggest an answer

Log in or Sign up to answer