feat(email): update registration email template to welcome email

This commit is contained in:
csimonis 2025-05-14 08:39:05 +02:00 committed by Constantin Simonis
commit e6c34ffe90
2 changed files with 6 additions and 7 deletions

View file

@ -39,7 +39,7 @@ public class EmailService {
public void sendRegistrationEmail(UserEntity user) {
try {
String template = loadTemplate("email/registration.html");
String template = loadTemplate("email/welcome.html");
String htmlContent = template
.replace("${username}", user.getUsername())
.replace("${feUrl}", feUrl);