Skip to content

Commit

Permalink
CLAP-411 Fix : 이메일 redirect url 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
starboxxxx committed Feb 13, 2025
1 parent f126b01 commit a453638
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public EmailTemplate createNewPasswordTemplate(String receiver, String receiverN
Context context = new Context();
String templateName = "new-password";
String subject = "[TaskFlow] 비밀번호 재설정";
context.setVariable("loginLink", "http://localhost:5173/login");
context.setVariable("loginLink", REDIRECT_URL_LOGIN);
context.setVariable("newPassword", newPassword);
context.setVariable("receiverName", receiverName);
String body = templateEngine.process(templateName, context);
Expand Down

0 comments on commit a453638

Please sign in to comment.