Closed wixaw closed 7 years ago
Hi @willouuu !
You can use the notifications.nodemailer
configuration, as described here: http://docs.democracyos.org/configuration.html#-notifications-nodemailer-
Evertything thats inside the "nodemailer"
key, will be passed to the Nodemailer library, more options are available here: https://nodemailer.com/smtp/
For example, our mailtrap smtp config on production.json
is something like this:
{
"notifications": {
"nodemailer": {
"host": "mailtrap.io",
"port": 2525,
"auth": {
"user": "username",
"pass": "the-password"
}
}
}
}
And, if you want to configure it with environment variables, it would be like this:
NOTIFICATIONS_NODEMAILER='{ "host": "mailtrap.io", "port": 2525, "auth": { "user": "username", "pass": "the-password" } }'
Thank you very much ! You should put this example in the documentation. We do not understand that we must put these instructions in the variable NOTIFICATIONS_NODEMAILER
Hi, Sorry To latest version (2.9.3), not receveid new topic notification in single forum mode (but 2.8.1 it's work ) King regards
Hi We want to use DemocracyOs internally We want to use our SMTP server, our regulations prohibit the use of external providers. How can we configure it?
Thanks