Skip to content

Commit

Permalink
Fix email subject (#824)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmiccoli authored Aug 2, 2024
1 parent 9c5eb72 commit 1ceb67f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ public IamEmailNotification createAccountRestoredMessage(IamAccount account) {
model.put(RECIPIENT_FIELD, recipient);
model.put(ORGANISATION_NAME, organisationName);

String subject = String.format("[%s IAM] Account restored", organisationName);
String subject = "Account restored";

IamEmailNotification notification = createMessage("accountRestored.ftl", model,
IamNotificationType.ACCOUNT_RESTORED, subject, asList(account.getUserInfo().getEmail()));
Expand Down

0 comments on commit 1ceb67f

Please sign in to comment.