Skip to content

Commit

Permalink
fix: MailSendService sendFrom 이메일 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
suhyenim committed Jun 10, 2024
1 parent 6912e82 commit 453452e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void makeRandomNumber() {
//mail을 어디서 보내는지, 어디로 보내는지 , 인증 번호를 html 형식으로 어떻게 보내는지 작성합니다.
public String joinEmail(String email) {
makeRandomNumber();
String setFrom = "[email protected]"; // email-config에 설정한 자신의 이메일 주소를 입력
String setFrom = "[email protected]"; // email-config에 설정한 자신의 이메일 주소를 입력
String toMail = email;
String title = "회원 가입 인증 이메일 입니다."; // 이메일 제목
String content =
Expand Down

0 comments on commit 453452e

Please sign in to comment.