메일로 임시 비밀번호를 전송하는 것을 구현해보았다. implementation 'org.springframework.boot:spring-boot-starter-mail' build.gradle의 dependencies에 추가 spring.mail.host=smtp.gmail.com spring.mail.port=587 spring.mail.username=발송할이메일 spring.mail.password=비밀번호 spring.mail.properties.mail.smtp.auth=true spring.mail.properties.mail.smtp.starttls.enable=true// TLS-protected 연결 허용 application-mail.properties를 생성한 후 위의 내용을 추가했..