Skip to content

Commit 0391d2a

Browse files
committed
feature: Added Env Variables for SMPT server
1 parent 758f86f commit 0391d2a

File tree

1 file changed

+5
-0
lines changed
  • server/api-service/lowcoder-server/src/main/resources/selfhost/ce

1 file changed

+5
-0
lines changed

server/api-service/lowcoder-server/src/main/resources/selfhost/ce/application.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ spring:
1818
max-in-memory-size: 20MB
1919
webflux:
2020
context-path: /
21+
mail:
22+
host: ${LOWCODER_SMTP_HOST:smtp.gmail.com}
23+
port: ${LOWCODER_SMTP_PORT:587}
24+
username: ${LOWCODER_SMTP_USERNAME:yourmail@gmail.com}
25+
password: ${LOWCODER_SMTP_PASSWORD:yourpass}
2126

2227
server:
2328
compression:

0 commit comments

Comments
 (0)