Skip to content

Commit

Permalink
HOTFIX: 이메일 서비스 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ehs208 committed Oct 15, 2024
1 parent 4f251f1 commit 5e5d67e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void mailSend(String toMail, String title, String content) throws Messagi
MimeMessage message = mailSender.createMimeMessage();//JavaMailSender 객체를 사용하여 MimeMessage 객체를 생성
MimeMessageHelper helper = new MimeMessageHelper(message, true,
"utf-8");// true를 전달하여 multipart 형식의 메시지를 지원하고, "utf-8"을 전달하여 문자 인코딩을 설정
helper.setTo("h");//이메일의 수신자 주소 설정
helper.setTo(toMail);//이메일의 수신자 주소 설정
helper.setSubject(title);//이메일의 제목을 설정
helper.setText(content, true);//이메일의 내용 설정 두 번째 매개 변수에 true를 설정하여 html 설정으로한다.
mailSender.send(message);
Expand Down

0 comments on commit 5e5d67e

Please sign in to comment.