Skip to content

Commit d384418

Browse files
committed
Update application.props to include smtp server auth
1 parent 72518dc commit d384418

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

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

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,19 @@ spring:
1010
allow-bean-definition-overriding: true
1111
allow-circular-references: true
1212
mail:
13-
host: smtp.freesmtpservers.com
14-
port: 25
13+
host: smtp.gmail.com
14+
port: 587
15+
username: yourmail@gmail.com
16+
password: yourpass
17+
properties:
18+
mail:
19+
smtp:
20+
auth: true
21+
starttls:
22+
enable: true
23+
required: true
24+
transport:
25+
protocol: smtp
1526

1627
server:
1728
compression:

0 commit comments

Comments
 (0)