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

feat: email 전송 기능 구현 #34

Merged
merged 29 commits into from
Jul 5, 2024
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
1f93868
feat: email 전송 기능 구현
qormoon Jun 26, 2024
3ff273b
Merge branch 'dev' of https://github.com/Tave-13th-Project-Team-4-Fiu…
qormoon Jun 26, 2024
a33c872
chore:폴더 이름 변경
qormoon Jun 26, 2024
afe78db
chore:도커에 환경변수 추가
qormoon Jun 26, 2024
1623c87
chore:도커에 환경변수 수정
qormoon Jun 26, 2024
c7efb75
chore: 환경 변수 변경
qormoon Jun 26, 2024
9caf941
chore: 오류 디버그 확인
qormoon Jun 26, 2024
3d2d439
fix: 오타 수정
qormoon Jun 26, 2024
37bf8cf
chore: email 테스트
qormoon Jun 26, 2024
3176bed
chore: 앱 비밀번호 수정
qormoon Jun 26, 2024
17cc25e
chore: naver smtp로 변경
qormoon Jun 26, 2024
32d636f
chore: smtp port 변경
qormoon Jun 26, 2024
001bc4c
chore: smtp port 변경
qormoon Jun 26, 2024
3616e2a
chore: smtp gmail로 다시 변경
qormoon Jun 26, 2024
1dff7eb
chore: 환경변수 없애기
qormoon Jun 26, 2024
f1e1c50
feat: 스케쥴러 추가
qormoon Jun 27, 2024
18e8ff9
chore: 시간 변경 anniversaryService 코드 변경
qormoon Jun 27, 2024
c5f3e28
chore: 한국 기준 날짜 변경
qormoon Jun 28, 2024
da4a0d9
chore: 한국 기준 시간 변경
qormoon Jun 28, 2024
cae1ede
fix: LazyInitializationException오류 해결
qormoon Jun 28, 2024
60e79e4
chore: 발신자 이름 변경 및 디자인 변경
qormoon Jun 28, 2024
0fe35ce
chore: 메일 전송 테스트
qormoon Jun 28, 2024
9f9ca5b
chore: 디자인 적용
qormoon Jun 28, 2024
cfe6349
Merge branch 'dev' of https://github.com/Tave-13th-Project-Team-4-Fiu…
qormoon Jun 28, 2024
137ffa1
chore: alarm이 true인 경우에만 메일 전송
qormoon Jun 28, 2024
d89eba8
chore: 메일 전송 시간 9시로 변경
qormoon Jun 28, 2024
74a5572
feat: 메일전송 3일전 전송 추가
qormoon Jun 29, 2024
6e783a3
chore: 이메일 테스트
qormoon Jul 4, 2024
b32e3c3
Merge branch 'dev' into feature/mail
qormoon Jul 4, 2024
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
Prev Previous commit
Next Next commit
chore: naver smtp로 변경
  • Loading branch information
qormoon committed Jun 26, 2024
commit 17cc25eda95629abbc79c667d15116c96491f296
6 changes: 3 additions & 3 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -42,15 +42,15 @@ spring:
- account_email

mail:
host: smtp.gmail.com
port: 587
host: smtp.naver.com
port: 465
username: ${{ secrets.MAIL_USERNAME }}
password: ${{ secrets.MAIL_PASSWORD }}
properties:
mail:
smtp:
auth: true
starttls:
ssl:
enable: true

logging.level:
Loading