Skip to content

Commit 7ee8995

Browse files
authored
Merge pull request #732 from Opetushallitus/feature/OPHKIOS-101
VKT(Backend): Fix partially free enrollment email subject
2 parents 9931934 + a48d02d commit 7ee8995

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/vkt/src/main/java/fi/oph/vkt/service/PublicEnrollmentEmailService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,8 @@ public void sendPartiallyFreeEnrollmentConfirmationEmail(
245245
final String recipientAddress = enrollment.getEmail();
246246
final String subject = String.format(
247247
"%s | %s",
248-
LocalisationUtil.translate(localeFI, "subject.enrollment-to-queue-confirmation"),
249-
LocalisationUtil.translate(localeSV, "subject.enrollment-to-queue-confirmation")
248+
LocalisationUtil.translate(localeFI, "subject.enrollment-confirmation"),
249+
LocalisationUtil.translate(localeSV, "subject.enrollment-confirmation")
250250
);
251251
final String body = templateRenderer.renderEnrollmentConfirmationEmailBody(templateParams);
252252

0 commit comments

Comments
 (0)