Skip to content

Lost Password Feature #715

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

Merged
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update application.props to include smtp server auth
  • Loading branch information
aq-ikhwa-tech committed Feb 26, 2024
commit d3844185a384dd7864b3db5da3051fb81fcfeb7c
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,19 @@ spring:
allow-bean-definition-overriding: true
allow-circular-references: true
mail:
host: smtp.freesmtpservers.com
port: 25
host: smtp.gmail.com
port: 587
username: yourmail@gmail.com
password: yourpass
properties:
mail:
smtp:
auth: true
starttls:
enable: true
required: true
transport:
protocol: smtp

server:
compression:
Expand Down