You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since configs in locals.js gets merged into other configs, it makes more sense not to deviate from how mailers are being configured in config/mail.js. Currently we have:
mailer: 'nodemailer',mailer: {nodemailer: {}}
But we can however follow same configuration signature in config/mail.js and eliminate the checks in getting what mailer to use in production or development all together. With this change setting up an email mailer in local will look similar to that in config/mails.js.
Since configs in
locals.js
gets merged into other configs, it makes more sense not to deviate from howmailers
are being configured inconfig/mail.js
. Currently we have:But we can however follow same configuration signature in
config/mail.js
and eliminate the checks in getting what mailer to use in production or development all together. With this change setting up an email mailer in local will look similar to that inconfig/mails.js
.This simplifies things.
The text was updated successfully, but these errors were encountered: