From 3eb86bb61c94381a3e57a7c1fd124d719dfd0e38 Mon Sep 17 00:00:00 2001 From: 1000hyehyang Date: Thu, 12 Feb 2026 17:58:43 +0900 Subject: [PATCH] =?UTF-8?q?fix(#389):=20=EC=95=8C=EB=A6=BC=20=EC=9D=B4?= =?UTF-8?q?=EB=A9=94=EC=9D=BC=20=EA=B2=BD=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../infrastructure/sender/EmailNotificationSender.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/example/RealMatch/notification/infrastructure/sender/EmailNotificationSender.java b/src/main/java/com/example/RealMatch/notification/infrastructure/sender/EmailNotificationSender.java index 2e77e1ac..cc2d6f5f 100644 --- a/src/main/java/com/example/RealMatch/notification/infrastructure/sender/EmailNotificationSender.java +++ b/src/main/java/com/example/RealMatch/notification/infrastructure/sender/EmailNotificationSender.java @@ -69,7 +69,7 @@ public String send(Notification notification) throws Exception { } private String buildHtmlContent(Notification notification) { - String notificationUrl = frontendUrl + "/notifications"; + String notificationUrl = frontendUrl + "/notification"; // HTML Injection 방지를 위해 사용자 입력값 이스케이프 처리 String escapedTitle = HtmlUtils.htmlEscape(notification.getTitle()); String escapedBody = HtmlUtils.htmlEscape(notification.getBody());