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());