Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This article provides the code snippet to send emails to users in the group(s) selected in a multi-group picker field in Email issue(s) (JMWE app).

Instructions

  1. Navigate to the intended workflow to make the necessary changes in the edit mode.

  2. Select the required transition.

  3. Select the Post functions tab and click Add post function.

  4. Add the Email issue(s) (JMWE app) post-function.

  5. Add:
    Email content: Enter Subject, Text Body as needed.
    Recipients: Enter the following in Users from template:

    Code Block
    languagejava
    {% set allUsers = [] %}
    {% for grp in (issue.fields.customfield_10082 | field("name"))%}
    {% for user in (grp | groupMembers) %}
    {% if (allUsers | filter(user | field("accountId")) | length == 0) %}
    {% set ignored = allUsers.push(user | field("accountId")) %} 
    {% endif %}
    {% endfor %}
    {% endfor %}
    {{ allUsers }}

...

Publish the workflow for the changes to be applied as configured.

References

...