Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×We want to send emails to a specific user when an issue is in a specific state. The notifications scheme does not have this granularity. So I tried creating a custom field that was populated with a user/email during transition to the state and cleared once the issue leaves that state.
The notification scheme only accepts "User Picker"s for notifications so the custom field has to be a User Picker. Next I create a Post function to populate the field. This is where I am stuck, the only user I can pick is %%CURRENT_USER%%.
Have a missed something? Am I going about this the wrong way? Using Jira Cloud.
Cheers,
Kevin
Hello,
When you add this post function you have a field to enter the value for your custom field. Enter there the name of the required user.
it is the name of the user. For example, admin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If my asnwer helped you, kindly accept my answer.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are welcome!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would create a filter, with your specific validation rules, -> state you want to watch for your issues. With this filter I would then create a subscription with your wanted regularity -> Daily, weekly, or hourly. Then you get mails when you have issues in that state, and you can take actions.
Cheers, Mattias
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
OK, I created a filter that displays issues that were updated within the last minute (updated >= -1m). I then created a subscription that sent emails every minute (0 * * ? * *). This will ensure that users will get information immediately. The subscription frequency must match the filter time limit (i.e. one minute) so that users do not get notified more that once about an issue that was updated.
When I choose recipients I have to choose a JIRA group. So I will need to set that up.
Updates to an issue can be made in the Description field or as a comment. Description can be included as a column in the filter. However, without a column for comments (or more specifically 'latest comment'), the email will not include information added there
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.