Skip to content

Commit

Permalink
fix : 메일 인증을 하이퍼링크 방식이 아닌 코드 직접 입력 방식으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
phjppo0918 committed Dec 29, 2023
1 parent 19470b9 commit a1fd17a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class MailSvc(
val messageHelper = MimeMessageHelper(memeMessage, false, "UTF-8")
messageHelper.setTo(event.email)
messageHelper.setSubject("[Q-BOX] 이메일 인증입니다.")
messageHelper.setText("다음 링크로 접속하세요 : <a href =\"${serviceUrl}?key=${event.key}\"> [ 인증하기 ] </a>", true)
messageHelper.setText("인증키는 [ ${event.key} ] 입니다")
}

}

0 comments on commit a1fd17a

Please sign in to comment.