Skip to content

Commit

Permalink
Merge pull request #129 from IDEA-CAMPUS/develop
Browse files Browse the repository at this point in the history
Refactor: 메일링크 수정
  • Loading branch information
jisujeong0 authored Jan 17, 2024
2 parents b9bad9c + 95b8fea commit 1a34ad0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public ResponseEntity<?> sendEmail(FindPasswordReq findPasswordReq) {
+ "<p>서비스 이용을 위한 하단 계정의 비밀번호 재설정 이메일 요청 메일입니다.</p>"
+ "<p>'비밀번호 재설정' 버튼을 클릭하여 재설정을 완료하실 수 있습니다.</p>"
+ "<br>"
+ "<a href='http://localhost:3000/resetPW" + code + "' style='"
+ "<a href='http://localhost:3000/resetPW/" + code + "' style='"
+ "display: inline-block;"
+ "font-weight: bold;"
+ "padding: 10px 20px;"
Expand Down Expand Up @@ -83,12 +83,12 @@ public ResponseEntity<?> sendEmail(FindPasswordReq findPasswordReq) {

ApiResponse apiResponse = ApiResponse.builder()
.check(true)
.information("http://localhost:3000/resetPW" + code)
.information("http://localhost:3000/resetPW/" + code)
.build();

return ResponseEntity.ok(apiResponse);
}

/
// 코드 저장
private Verify saveCode(String email,String code) {

Expand Down

0 comments on commit 1a34ad0

Please sign in to comment.