Ok, all I need is Jira to send a reminder email to the Ticket Assignee 1 day before the due date on a ticket.
This seems like a simple request, but cannot get this done.
@Ted You will need to create an automation rule with a scheduled trigger, e.g. runs every day at 9am.
In your schedule trigger you can include a JQL to search for issues, which is where you will need to add duedate = startofday("+1d") to find all tasks with a due date of tomorrow.
You will then use the Send Email action to send the email to the assignee.
Hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Ted No worries! If this answered your question, feel free to hit the Accept Answer button above so if anyone in the future has the same question it might help them out :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Callum Carlile _Automation Consultants_ I was trying to get a notification email from an issue scheduled date the same day and same time it is scheduled, with that said should I just change the duedate = startofday("+1d") to duedate = startofday("+0d")?
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Celine Penaredondo You can just use startofday()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for this quick reply. I actually tried this and I didn't receive any email notification on the scheduled time and date. There might be something I missed.
What I want to do is get an email reminder of the Scheduled Time of the issue. I just don't know where to start. Thanks! @Callum Carlile _Automation Consultants_
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Callum Carlile _Automation Consultants_ I am trying to do the same thing but to take into account the business days. For example on a Friday, I would like to warn the assignee about the tasks that needs to be completed on Monday.
Something along the lines of comparing the due date to now.plusBusinessDays(1) but that doesn't work for me.
Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@amit.hergass This should have worked as per the documentation on this (see below diagram, or full docs here). The value you provided above is option number 4 in the diagram - did you definitely use the {{ }} brackets before and after the smart value?
When you say it didn't work, did it still post the date of the Saturday? Or were there some kind of errors?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for your response.
The problem was related to the date format.
The way it works for me:
project = my_project AND statusCategory != Done and dueDate = "{{now.plusDays(1).toBusinessDay().format("YYYY-MM-dd")}}"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can use automation in jira to send notifications based on due date. Here's a handy thread on how to do that: https://community.atlassian.com/t5/Trello-questions/Notification-for-due-dates/qaq-p/1645896
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.