You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/hydro/lib/mail.ts

41 lines
1.2 KiB
TypeScript

import nodemailer from 'nodemailer';
import { SendMailError } from '../error';
// eslint-disable-next-line import/prefer-default-export
export async function sendMail(to: string, subject: string, text: string, html: string) {
let t: unknown;
4 years ago
try {
const { system } = global.Hydro.model;
const [host, port, secure, user, pass, from] = await Promise.all([
system.get('smtp.host'),
system.get('smtp.port'),
system.get('smtp.secure'),
system.get('smtp.user'),
system.get('smtp.pass'),
system.get('smtp.from'),
]);
const transporter = nodemailer.createTransport({
host, port, secure, auth: { user, pass },
});
t = await new Promise((resolve, reject) => {
transporter.sendMail({
from,
to,
subject,
text,
html,
}, (err, info) => {
if (err) reject(err);
else resolve(info);
4 years ago
});
4 years ago
});
} catch (e) {
throw new SendMailError(to);
}
return t;
}
global.Hydro.lib.mail = {
4 years ago
sendMail,
5 years ago
};