Skip to content

Commit

Permalink
Merge pull request #422 from ec-jrc/268-send-email-participants
Browse files Browse the repository at this point in the history
268 send email participants
  • Loading branch information
iratigarzon authored May 22, 2024
2 parents 23091b4 + 24feedf commit 01ded83
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public static void sendEmailToAllUsersOfAnAction(RegAction regAction, ResourceBu
LinkedHashSet<InternetAddress> users = new LinkedHashSet<>();
users.add(new InternetAddress(regAction.getSubmittedBy().getEmail()));
users.add(new InternetAddress(regAction.getApprovedBy().getEmail()));
users.add(new InternetAddress(regAction.getPublishedBy().getEmail()));
users.add(new InternetAddress(regAction.getRegUser().getEmail()));

if (!users.isEmpty()) {
Expand Down

0 comments on commit 01ded83

Please sign in to comment.