-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Verify if connection to email server was successful
- Loading branch information
Showing
5 changed files
with
30 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,11 @@ MONGODB_URL=mongodb://127.0.0.1:27017/node-boilerplate | |
JWT_SECRET=thisisasamplesecret | ||
JWT_ACCESS_EXPIRATION_MINUTES=30 | ||
JWT_REFRESH_EXPIRATION_DAYS=30 | ||
EMAIL_HOST= | ||
EMAIL_PORT= | ||
EMAIL_USER= | ||
EMAIL_PASS= | ||
EMAIL_FROM= | ||
|
||
# SMTP configuration options for the email service | ||
# For testing, you can use a fake SMTP service like Ethereal: https://ethereal.email/create | ||
SMTP_HOST=email-server | ||
SMTP_PORT=587 | ||
SMTP_USERNAME=email-server-username | ||
SMTP_PASSWORD=email-server-password | ||
EMAIL_FROM=[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters