aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/mail.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/config/mail.js b/config/mail.js
index 6b18db2..1294aca 100644
--- a/config/mail.js
+++ b/config/mail.js
@@ -21,13 +21,17 @@ module.exports = {
21 | 21 |
22 | Here we define configuration for sending emails via SMTP. 22 | Here we define configuration for sending emails via SMTP.
23 | 23 |
24 | https://nodemailer.com/smtp/
25 |
24 */ 26 */
25 smtp: { 27 smtp: {
26 driver: 'smtp', 28 driver: 'smtp',
27 pool: true, 29 pool: true,
30 name: Env.get('EXTERNAL_DOMAIN'),
28 port: Env.get('SMTP_PORT', 2525), 31 port: Env.get('SMTP_PORT', 2525),
29 host: Env.get('SMTP_HOST'), 32 host: Env.get('SMTP_HOST'),
30 secure: false, 33 secure: Env.get('SSL', false), // true for 465, false for other ports,
34 authMethod: ‘LOGIN’,
31 auth: { 35 auth: {
32 user: Env.get('MAIL_USERNAME'), 36 user: Env.get('MAIL_USERNAME'),
33 pass: Env.get('MAIL_PASSWORD') 37 pass: Env.get('MAIL_PASSWORD')