mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
25 lines
455 B
JavaScript
25 lines
455 B
JavaScript
/**
|
|
*
|
|
* Have a look at nodemailer's config on how to set this up https://nodemailer.com/about/
|
|
*
|
|
*/
|
|
|
|
var mail_config = {
|
|
port: 587,
|
|
host: 'smtp.example.com',
|
|
auth: {
|
|
user: 'ex@amp.le',
|
|
pass: 'example'
|
|
},
|
|
secure: true,
|
|
authMethod: 'PLAIN',
|
|
tls: {
|
|
ciphers:'SSLv3'
|
|
},
|
|
from: 'no-reply@zoff.me',
|
|
to: 'contact@zoff.me'
|
|
notify_mail: 'notify@mail.example',
|
|
};
|
|
|
|
module.exports = mail_config;
|