2023-03-31 21:14:29 +01:00
|
|
|
const log = require('../utils/log.utils')
|
2023-04-01 11:06:30 +01:00
|
|
|
const fs = require('fs')
|
|
|
|
const mail = require('node-mailer'); //>> Probs wrong
|
|
|
|
|
2023-04-01 15:09:29 +01:00
|
|
|
const fromAdrr = process.env.OWL_EML_FROM
|
|
|
|
const smtpUser = process.env.OWL_EML_USER
|
|
|
|
const smtpPass = process.env.OWL_EML_PASS
|
|
|
|
const smtpHost = process.env.OWL_EML_HOST
|
|
|
|
const smtpPort = process.env.OWL_EML_PORT
|
2023-03-31 21:14:29 +01:00
|
|
|
|
2023-04-01 15:09:29 +01:00
|
|
|
const options = {
|
|
|
|
host: smtpHost,
|
|
|
|
port: smtpPort,
|
|
|
|
secure: true,
|
|
|
|
auth: {
|
|
|
|
user: smtpUser,
|
|
|
|
pass: smtpPass
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let transporter = nodemailer.createTransport(options)
|
|
|
|
|
|
|
|
async function sendTest(to, subject, plaintext, html) {
|
|
|
|
log.out(`mailServices.sendTest: Sending test message to: ${to}, subject: ${subject}`, "info")
|
2023-03-31 21:14:29 +01:00
|
|
|
// Send test mail message
|
2023-04-01 15:09:29 +01:00
|
|
|
let res = await transporter.sendMail({
|
|
|
|
from: fromAdrr,
|
|
|
|
to: to,
|
|
|
|
subject: subject,
|
|
|
|
text: plaintext,
|
|
|
|
html: html
|
|
|
|
});
|
2023-03-31 21:14:29 +01:00
|
|
|
return;
|
2023-04-01 11:06:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
async function sendRegister() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function sendAlert() {
|
|
|
|
return;
|
2023-04-01 15:09:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
sendTest,
|
|
|
|
sendRegister,
|
|
|
|
sendAlert
|
2023-03-31 21:14:29 +01:00
|
|
|
}
|