Skip to content

Commit a453638

Browse files
committed
CLAP-411 Fix : 이메일 redirect url 수정
1 parent f126b01 commit a453638

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/clap/server/adapter/outbound/api/email/EmailTemplateBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public EmailTemplate createNewPasswordTemplate(String receiver, String receiverN
100100
Context context = new Context();
101101
String templateName = "new-password";
102102
String subject = "[TaskFlow] 비밀번호 재설정";
103-
context.setVariable("loginLink", "http://localhost:5173/login");
103+
context.setVariable("loginLink", REDIRECT_URL_LOGIN);
104104
context.setVariable("newPassword", newPassword);
105105
context.setVariable("receiverName", receiverName);
106106
String body = templateEngine.process(templateName, context);

0 commit comments

Comments
 (0)