Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix] 이메일 인증코드 고정 수정 #148

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public String sendVerificationCode(String toEmail, String verificationCode) thro
msgg += "<div class='code-block' style='border: 2px solid #2196F3; padding: 15px; background-color: #f0f8ff; border-radius: 5px;'>";
msgg += "<h3 style='color: #2196F3;'>회원 가입 인증 코드입니다.</h3>";
msgg += "<div class='code' style='font-size: 150%; color: #333; margin-top: 10px;'>";
msgg += "CODE : <strong style='color: #E91E63;'>123456</strong>"; // 여기에 verificationCode 값을 넣으세요
msgg += "CODE : <strong style='color: #E91E63;'>"+verificationCode+"</strong>"; // 여기에 verificationCode 값을 넣으세요
msgg += "</div>";
msgg += "</div>";
msgg += "</div>";
Expand Down
Loading