How to send email tasks to User Group?

I have a Email Task which is to be sent to a group of users. How to config this in Email Content?
Can I just simply use the Flowable “User Group Name” in “To”?

1 Like

No, you’ll have to get all the group’s emails into a comma-separated string. It would be a nice feature if someone wanted to write and contribute it :slight_smile:

Cheers
Paul.

Thanks, we’d like to ask support from help desk to create distribution group email address.

I was able to get the list of members of the group using the following expression:
${processEngine.getIdentityService().createUserQuery().memberOfGroup(“Group1”).list()}

The question now remains how to get a comma-seperated value of the emails of these users.