Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
12 changes: 12 additions & 0 deletions src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
spring:
application:
name: codeplay
mail:
host: smtp.gmail.com
port: 587
username: ${SPRING_MAIL_USERNAME} # 이메일 계정
password: ${SPRING_MAIL_PASSWORD}
protocol: smtp
properties:
mail:
smtp:
auth: true
starttls:
enable: true

config:
import:
Expand Down
13 changes: 9 additions & 4 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,15 @@ spring:
mail:
host: smtp.gmail.com
port: 587
username: dummy-email@gmail.com # 이메일 계정
password: dummy-password
protocol: smt
tls: true
username: ${SPRING_MAIL_USERNAME} # 이메일 계정
password: ${SPRING_MAIL_PASSWORD}
protocol: smtp
properties:
mail:
smtp:
auth: true
starttls:
enable: true


config:
Expand Down