Hello everyone,
I searched for this issue on the community but I seem to have a particular need about this ticket field.
I need to send a notification when due date is occurring for a ticket assigned to me.
Is it possible without using some backend code?
Thank you in advance
And to add to what the Airbus Driver said,
You can also accomplish that by using Jira automation:
Test it before of sending actual emails to people. Hope that helps you.
This is a great start for setting up the automation. I have used it to notify people of due dates less than 2 days coming.
But how can I get a list of the upcoming tasks with due dates, in the actual email?
Currently the emails come through blank
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello, how can I make the email notification go 2 days before the due date?
what would be the JQL? Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Adam - if you create a filter and then subscribe to it, it shows the issues.
Anthony - I actually show anything due in the next 5 days (or overdue) - filter:
assignee = currentUser() AND resolution is EMPTY AND duedate <= 5d
Subscription to filter is a daily email at 7:00am with the list.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is possible by using JQL and a subscription filter.
1. Navigate to Filters -> Advanced issue search
2. Use the following JQL search clause (if the due date is due in 1 day);
assignee = currentUser() AND resolution is EMPTY AND duedate = 1d
3. Click 'Save as' to save the filter
4. On the same page, click on 'Details' right next to 'Save as' and click on 'New subscription' and then configure how often you want the notification to be sent to you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Got the same request from users.
Good solution (thumb up)
With the subscription to a JQL we can work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What if I want to send out the e-mail notification 1 day before the due date? What schedule can you use for that?
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.
Hello @Airbus Driver
I sincerely appreciate your indication. It works out of the box.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have the same question! Need to send the email one day before due date. For the same day due data i have the code: duedate >=startOfDay() and duedate <=endOfDay() but I keep getting errors for the due date 1 day earlier ( try different options). Anyone could support me with this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
your JQL duedate >=startOfDay() and duedate <=endOfDay() will result in issues with the due date of today not tomorrow which is I think what you want. Remember that startofday is midnight and end of day is 11:59 PM. So if you are looking for issues that are due tomorrow try the following.
duedate > endOfDay() and duedate < startofday(1)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Personally I like to create a dashboard that includes my “due soon” issues. I check my dashboard each morning.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is now a customizable template in project settings, automations, templates.
Template customizations
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes those are great options. One thing to keep in mind, though, is the consumption of automation given the recent quantity restrictions.
As an admin and consultant to other companies, I am now looking for ways to conserve automation, and only use it when other suitable options don't exist.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Jack Brickey Good call. We are using automations lightly and are still hitting 900+ runs a month... I don't understand why the limits are set so low.
Even if we upgraded, we still have power users who's runs would be greater than 100.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would love to follow the first answer. Unfortunately a "project settings" button does not exist in my set up. Is it something that only the board manager has?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are not a project admin (has the administer project permission), and that's why you don't see it. Ask from him to do anything you want or ask him to grant you the project admin role.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Alex Koxaras _Relational_ , @Jack Brickey
Can you please help here we have an automations for Leavers forms. for these the automation will create issues to different teams to deactivate the the accounts of the the leaver and linked to the main leaver form and also notification emails are sent on the same for teams. the current process triggered on the creation of the ticket.
But now, we want to update rule based on the "Execution date" the linked issues and notifications are to be sent only on this date.
I tried with two different automations
trigger : Issues created
Condition JQL = execution day is now or the past
Action = issues created and linked to current issues and notification are also sent.
these working as expected as the current automation. But we need to creat autromation if the Exception date is greater than to day.
we need to create the linked issues and send notifications on the day of excecution day only.
Will it will have any suggested workaround.
Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ritu,
I suggest you post a new question
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.