Add job queue; e-mail sending; password reset support

This commit is contained in:
garrettmills
2020-05-25 15:45:26 -05:00
parent f371310620
commit 76ba843348
22 changed files with 884 additions and 30 deletions

12
config/smtp.config.js Normal file
View File

@@ -0,0 +1,12 @@
const smtp_config = {
host: env('SMTP_HOST', 'localhost'),
port: env('SMTP_PORT', 587),
secure: env('SMTP_SECURE', false),
default_sender: env('SMTP_DEFAULT_SENDER'),
auth: {
user: env('SMTP_USER'),
pass: env('SMTP_PASS'),
},
}
module.exports = exports = smtp_config