Add job queue; e-mail sending; password reset support
This commit is contained in:
12
config/smtp.config.js
Normal file
12
config/smtp.config.js
Normal 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
|
||||
Reference in New Issue
Block a user