Does anyone know how to setup Email in MEAN.js so that you can send password resets?
There is no documentation available from them.
More specifically, what provider will work with the following mailer?
...
mailer: {
from : process.env.MAILER_FROM || '',
options : {
service : process.env.MAILER_SERVICE_PROVIDER || '',
auth : {
user : process.env.MAILER_EMAIL_ID || '',
pass : process.env.MAILER_PASSWORD || ''
}
}
},
...