I'm currently trying to set up an automated email that gets delivered every Monday morning that would contain all the tasks with status In Progress or To Do as well as any comments or updates that have been made per issue. I've tried doing it via automation and managed to get timing of the mail set up, but struggling with using the smart tags to extract open tasks with each of their comments listed (as well as assignee and due date).
Hi @Jaco Nortier -- Welcome to the Atlassian Community!
For a question like this, please post an image of your complete automation rule, images of any relevant actions / conditions / branches, an image of the audit log details showing the rule execution, and explain what is not working as expected. Those will provide context for the community to offer ideas. Thanks!
Until we see those...
Please look here to learn more about smart values in issues: https://support.atlassian.com/cloud-automation/docs/jira-smart-values-issues/
For things like an assignee, you may want to use {{issue.assigne.displayName}} to have their user name. For due date, try using the various date formatting functions.
Kind regards,
Bill
@Bill Sheboy We are tring same but not receiving mail of weekly updates, kindly guide what to do for this,
attached screen rule details and audit logs for same
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @sandeepkudale -- Welcome to the Atlassian Community!
First thing: this is an older thread, and so I recommend creating a new question. That will ensure the maximum number of people see it to offer suggestions.
Back to your question...
You have created a rule with a Scheduled Trigger, using JQL which is checking the currentUser(). However for such rules, the rule actor is used, and that is the Automation for Jira user...and so no issues are found assigned.
Your rule also has a JQL condition apparently matching the same JQL as the trigger, and so that is not needed.
Let's assume this is your scenario:
GIVEN there are issues assigned to one or more users
AND issues were created during this week OR updated during the week
WHEN our reporting day occurs (let's assume a specific day of week, such as Friday)
THEN send one email to each assignee, listing their assigned issues created OR updated during the week
You may use this how-to article to create such a rule, updating the JQL to meet your needs:
Kind regards,
Bill
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.