commented old code
This commit is contained in:
@ -198,7 +198,7 @@ exports.SendEmail_NewShifts = async function (publisher, shifts) {
|
||||
|
||||
|
||||
|
||||
//----------------------- OLD -----------------------------
|
||||
//----------------------- OLD -----------------------------
|
||||
|
||||
// exports.SendEmail_NewShifts = async function (publisher, shifts) {
|
||||
// if (shifts.length == 0) return;
|
||||
@ -247,51 +247,51 @@ exports.SendEmail_NewShifts = async function (publisher, shifts) {
|
||||
// };
|
||||
|
||||
|
||||
// https://mailtrap.io/blog/sending-emails-with-nodemailer/
|
||||
exports.SendEmail_Example = async function (to) {
|
||||
const welcomeImage = fs.readFileSync(
|
||||
path.join(CON.contentPath, "welcome.png")
|
||||
);
|
||||
// // https://mailtrap.io/blog/sending-emails-with-nodemailer/
|
||||
// exports.SendEmail_Example = async function (to) {
|
||||
// const welcomeImage = fs.readFileSync(
|
||||
// path.join(CON.contentPath, "welcome.png")
|
||||
// );
|
||||
|
||||
await client
|
||||
.send({
|
||||
category: "test",
|
||||
custom_variables: {
|
||||
hello: "world",
|
||||
year: 2022,
|
||||
anticipated: true,
|
||||
},
|
||||
from: sender,
|
||||
to: [{ email: to }],
|
||||
subject: "Hello from Mailtrap!",
|
||||
html: `<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
</head>
|
||||
<body style="font-family: sans-serif;">
|
||||
<div style="display: block; margin: auto; max-width: 600px;" class="main">
|
||||
<h1 style="font-size: 18px; font-weight: bold; margin-top: 20px">Congrats for sending test email with Mailtrap!</h1>
|
||||
<p>Inspect it using the tabs you see above and learn how this email can be improved.</p>
|
||||
<img alt="Inspect with Tabs" src="cid:welcome.png" style="width: 100%;">
|
||||
<p>Now send your email using our fake SMTP server and integration of your choice!</p>
|
||||
<p>Good luck! Hope it works.</p>
|
||||
</div>
|
||||
<!-- Example of invalid for email html/css, will be detected by Mailtrap: -->
|
||||
<style>
|
||||
.main { background-color: white; }
|
||||
a:hover { border-left-width: 1em; min-height: 2em; }
|
||||
</style>
|
||||
</body>
|
||||
</html>`,
|
||||
attachments: [
|
||||
{
|
||||
filename: "welcome.png",
|
||||
content_id: "welcome.png",
|
||||
disposition: "inline",
|
||||
content: welcomeImage,
|
||||
},
|
||||
],
|
||||
})
|
||||
.then(console.log, console.error, setResult);
|
||||
};
|
||||
// await client
|
||||
// .send({
|
||||
// category: "test",
|
||||
// custom_variables: {
|
||||
// hello: "world",
|
||||
// year: 2022,
|
||||
// anticipated: true,
|
||||
// },
|
||||
// from: sender,
|
||||
// to: [{ email: to }],
|
||||
// subject: "Hello from Mailtrap!",
|
||||
// html: `<!doctype html>
|
||||
// <html>
|
||||
// <head>
|
||||
// <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
// </head>
|
||||
// <body style="font-family: sans-serif;">
|
||||
// <div style="display: block; margin: auto; max-width: 600px;" class="main">
|
||||
// <h1 style="font-size: 18px; font-weight: bold; margin-top: 20px">Congrats for sending test email with Mailtrap!</h1>
|
||||
// <p>Inspect it using the tabs you see above and learn how this email can be improved.</p>
|
||||
// <img alt="Inspect with Tabs" src="cid:welcome.png" style="width: 100%;">
|
||||
// <p>Now send your email using our fake SMTP server and integration of your choice!</p>
|
||||
// <p>Good luck! Hope it works.</p>
|
||||
// </div>
|
||||
// <!-- Example of invalid for email html/css, will be detected by Mailtrap: -->
|
||||
// <style>
|
||||
// .main { background-color: white; }
|
||||
// a:hover { border-left-width: 1em; min-height: 2em; }
|
||||
// </style>
|
||||
// </body>
|
||||
// </html>`,
|
||||
// attachments: [
|
||||
// {
|
||||
// filename: "welcome.png",
|
||||
// content_id: "welcome.png",
|
||||
// disposition: "inline",
|
||||
// content: welcomeImage,
|
||||
// },
|
||||
// ],
|
||||
// })
|
||||
// .then(console.log, console.error, setResult);
|
||||
// };
|
||||
|
Reference in New Issue
Block a user