argos/notification-service/notification-web/src/main/resources/config/email.yml

14 lines
280 B
YAML
Raw Normal View History

2023-12-08 10:25:07 +01:00
spring:
mail:
2024-03-29 13:32:47 +01:00
host: ${MAIL_HOST}
port: ${MAIL_PORT}
username: ${MAIL_USERNAME}
password: ${MAIL_PASSWORD}
2023-12-08 10:25:07 +01:00
properties:
mail:
smtp:
2024-03-29 13:32:47 +01:00
auth: ${MAIL_AUTH}
2023-12-08 10:25:07 +01:00
starttls:
2024-03-29 13:32:47 +01:00
enable: ${MAIL_TLS}
2023-12-08 10:25:07 +01:00
email:
2024-03-29 13:32:47 +01:00
address: ${MAIL_ADDRESS}