Post

jakarta.mail.AuthenticationFailedException; 535-5.7.8 Username and Password not accepted

구글 메일을 사용할 때 발생할 수 있는 오류 입니다.

구글 메일 서비스 오류

2차 인증 활성화 하기

구글 > 계정 에 들어가서 2단계 인증을 활성화 합니다.

앱 비밀번호 발급받기

발급받은 번호를 yml 에 입력해줍니다.

1
2
3
4
5
6
7
8
9
10
11
12
mail:
    host: smtp.gmail.com
    port: 587
    username: [아이디]@gmail.com
    password: [here] # 띄어쓰기는 삭제해 주세요.
    properties:
      mail:
        smtp:
          auth: true # 사용자 인증 시도 여부(기본값 false)
          timeout: 5000 # Socket Read Timeout 시간 (ms) (기본값 무한대)
          starttls:
            enable: true # StartTLS 활성화 여부(기본값: false)
This post is licensed under CC BY 4.0 by the author.