tracman-server/config/mail.js

44 lines
1.3 KiB
JavaScript
Raw Normal View History

2017-12-12 17:40:07 -07:00
'use strict'
2017-04-01 11:03:31 -06:00
2017-12-12 17:40:07 -07:00
const nodemailer = require('nodemailer')
const env = require('./env/env.js')
const debug = require('debug')('tracman-mail')
2017-04-10 01:00:56 -06:00
let transporter = nodemailer.createTransport({
2017-12-12 17:40:07 -07:00
host: env.mailserver,
port: env.mailport,
secure: false,
requireTLS: true,
auth: env.mailauth
// logger: true,
// debug: true
2017-12-12 17:40:07 -07:00
})
2017-04-10 01:00:56 -06:00
module.exports = {
verify: () => {
debug(`Verifying SMTP connection...`)
transporter.verify( (err,success) => {
2017-12-13 11:13:59 -07:00
if (err){ console.error(err.stack); }
console.log(`SMTP${(success)?'':' not'} ready`)
} )
2017-05-30 12:30:09 -06:00
},
send: transporter.sendMail.bind(transporter),
text: (text) => {
return `Tracman\n\n${text}\n\nDo not reply to this email\nFor information about why you received this email, see the privacy policy at ${env.url}/privacyy#email`
},
html: (text)=>{
return `<h1><a href="/" style="text-decoration:none;"><span style="color:#000;font-family:sans-serif;font-size:36px;font-weight:bold"><img src="${env.url}/static/img/icon/by/32.png" alt="+" style="margin-right:10px">Tracman</span></a></h1>${text}<p style="font-size:8px;">Do not reply to this email. For information about why you recieved this email, see our <a href="${env.url}/privacy#email">privacy policy</a>. </p>`
},
noReply: '"Tracman" <NoReply@tracman.org>',
to: (user) => {
return `"${user.name}" <${user.email}>`
}
2017-12-12 17:40:07 -07:00
}