feat(email): update registration email template to welcome email
This commit is contained in:
parent
13b3443127
commit
e6c34ffe90
2 changed files with 6 additions and 7 deletions
|
@ -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);
|
||||
|
|
Reference in a new issue