SES 설정1. AWS 설정SES 자격 증명발신자 Email 입력 후 Email 인증IAMSES 사용키 발급 (access-key, secret-key)권한 : AmazonSESFullAccess2. Spring Boot 설정Dependencyimplementation("software.amazon.awssdk:sesv2:2.28.16")implementation("com.amazonaws:aws-java-sdk-ses:1.12.773") // 조만간 지원 Ximplementation("org.springframework.boot:spring-boot-starter-thymeleaf") // 메일 템플릿 사용 시 필요ConfigSesConfig 설정@Beanfun sesV2Client(): SesV2Cl..