Subscriptions 2 days before a certain start date possible?

Lacramioara Rosca November 12, 2015

I have created a JIRA filter which contains a column with the start date for different projects. Is it possible to receive an email notification 2 days before each start date if there is any in that period?

1 answer

1 accepted

0 votes
Answer accepted
Jobin Kuruvilla [Adaptavist]
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.
November 12, 2015

You can do something like this:

"Start Date" >= startOfDay(2) and "Start Date" < startOfDay(3)

This will get you all issues with Start date as 2 days from today. You can then run the subscription early morning to get an email of all issues starting in the next 2 days. You can also add more conditions to filter the results.

PS: Make sure you replace the start date with the appropriate custom field name.

Lacramioara Rosca November 12, 2015

Thank you! I was exactly what I needed.

Suggest an answer

Log in or Sign up to answer