modpacksio-common
Version:
Common code for Modpacks.io services
35 lines (31 loc) • 2.28 kB
JavaScript
const transporter = require('nodemailer').createTransport({
host: "in-v3.mailjet.com",
port: 587,
auth: {
user: process.env.SMTP_USER,
pass: process.env.SMTP_PASS
}
});
const send = data => new Promise((resolve, reject) => transporter.sendMail(data, (err, info) => {
if (err) reject(err);
resolve(info);
}));
const format = message => base.replace(/CONTENT/g, message);
module.exports = Object.freeze({
send, format
});
const base = `<div class=container style=box-sizing:border-box;margin:0;padding:0;display:flex;` +
`justify-content:center;width:100%;height:100%><div class=content style=box-sizing:border-box;` +
`margin:0;padding:0;width:90%;max-width:600px;height:100%;font-family:Arial,sans-serif><div class=header` +
` style=box-sizing:border-box;margin:0;padding:0;display:flex;justify-content:center;align-items:center;` +
`width:100%;height:100px><img alt="modpacks.io logo"src=https://i.imgur.com/4HmxRmq.png ` +
`style=box-sizing:border-box;margin:0;padding:0;width:300px;height:60px></div><hr style="box-sizing:border-box;` +
`margin:0;width:70%;height:2px;margin:0 auto;padding:0;border:none;border-radius:0;background-color:#e6e6e6"><div ` +
`class=main style="box-sizing:border-box;margin:0;padding:0;width:100%;height:calc(100% - 174px);padding:40px;` +
`color:grey">CONTENT</div><hr style="box-sizing:border-box;margin:0;width:70%;height:2px;margin:0 auto;padding:0;` +
`border:none;border-radius:0;background-color:#e6e6e6"><div class=footer style=box-sizing:border-box;margin:0;padding:0;` +
`display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%;height:70px;font-size:12px;` +
`color:#c9c9c9><p style=box-sizing:border-box;margin:0;padding: 0 0 5px;><a href=https://modpacks.io/ style=box-sizing:border-box;` +
`margin:0;padding:0;color:#a8a8a8>modpacks.io</a> • <a href=https://help.modpacks.io/ style=box-sizing:border-box;margin:0;` +
`padding:0;color:#a8a8a8>Support</a> • <a href=https://twitter.com/modpacksio style=box-sizing:border-box;margin:0;padding:0;` +
`color:#a8a8a8>@modpacksio</a><p style=box-sizing:border-box;margin:0;padding: 0 0 5px;>©2019 modpacks.io All Rights Reserved</div></div></div>`;