Skip to content

Commit c8c0b67

Browse files
Enabled emailing on production through the SendGrid Heroku addon. This
will enable the forgot password functionality to work.
1 parent ea57fbb commit c8c0b67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: config/env/production.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ module.exports = {
5353
options: {
5454
service: process.env.MAILER_SERVICE_PROVIDER || 'MAILER_SERVICE_PROVIDER',
5555
auth: {
56-
user: process.env.MAILER_EMAIL_ID || 'MAILER_EMAIL_ID',
57-
pass: process.env.MAILER_PASSWORD || 'MAILER_PASSWORD'
56+
user: process.env.SENDGRID_USERNAME || 'MAILER_EMAIL_ID',
57+
pass: process.env.SENDGRID_PASSWORD || 'MAILER_PASSWORD'
5858
}
5959
}
6060
}

0 commit comments

Comments
 (0)