https://stackoverflow.com/questions/47166425/how-to-force-javamailsenderimpl-to-use-tls1-2
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.5.0-b01</version>
</dependency>
Properties prop = new Properties();
prop.setProperty("mail.smtp.auth", "true");
prop.setProperty("mail.smtp.starttls.enable", "true");
prop.setProperty("mail.smtp.ssl.protocols", "TLSv1.2"); // Added this line
prop.setProperty("mail.smtp.ssl.trust", mailUri.getHost());
mailSender.setJavaMailProperties(prop);
'memo' 카테고리의 다른 글
[JAVA] HttpSessionListener를 이용한 세션 생성과 끊어질 때 접근 (0) | 2023.10.06 |
---|---|
[JAVA] json 형태로 전송시 null 값도 같이 전송하기 (0) | 2022.03.18 |
페이스북 / 인스타그램 og image 변경 안될 시 & TEST/ 오픈 그래프 (0) | 2021.12.07 |
카카오톡 SNS Og image 변경 안될 시 / 오픈 그래프 (0) | 2021.12.07 |
[chartjs] Ticks (0) | 2021.08.27 |
[JAVA] BindingResult 을 가진 BindException 강제 발생 (0) | 2021.07.16 |
JAVA SPRING에서 TILES 사용하기 MEMO (0) | 2021.07.06 |