Hello Cool People,
We have used the ScriptRunner add-on to create a new Send Custom Email listener that would trigger everytime a "Critical" Priority Ticket is created. Basically, this will just send an email alert to the a group of people and so far this has been working like a charm. I'm just wondering if someone here in the community had tried or can point me to a right direction on how to make this run on a schedule?
Right now, the alerting runs all day and triggers everytime a critical ticket is created. We wanted this to just trigger when a critical ticket is created between 4:00PM - 8:00PM.
Hopping someone can shed some light and share their expertise on this.
Best,
Lorenze
Hi Lorenze,
You can use the send custom email listener with the following condition:
def hour = Calendar.getInstance().get(Calendar.HOUR_OF_DAY) issue.issueType.name == "Critical" && hour >= 16 && hour < 20
Hope this helps,
Adam
Works like A Charm. Thanks you so much @Adam Markham [Adaptavist]. Once last question before resolving this. How do we Specify a certain day of the Week?
Thanks for the awesome condition that you have given.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can incorporate day of week in the condition like so:
def hour = Calendar.getInstance().get(Calendar.HOUR_OF_DAY) def dayOfWeek = Calendar.getInstance().get(Calendar.DAY_OF_WEEK) issue.issueType.name == "Critical" && hour >= 16 && hour < 20 && dayOfWeek == Calendar.MONDAY
This will send an email for a critical issue created between 4 - 8pm on Monday only.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Maybe you can do it from a post-function attached to the create issue transition checking the current time.
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.