Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@meanie/mail-composer
Advanced tools
A utility to help you compose emails using the Handlebars templating engine, compatible with the @sendgrid/mail library
A utility to help you compose emails using the Handlebars templating engine, compatible with the @sendgrid/mail library.
You can install this package using yarn
or npm
.
#yarn
yarn add @meanie/mail-composer
#npm
npm install @meanie/mail-composer --save
This package has a peer dependency of handlebars, which is assumed to be configured (e.g. custom plugins) by your application.
Prepare main template (e.g. template.hbs
):
<html>
<body>
<h1>{{app.title}}</h1>
{{partial}}
</body>
</html>
Prepare a partial (e.g. hello.hbs
):
<p>Hello {{user.firstName}}!</p>
Configure the composer:
//Load dependencies
const composer = require('@meanie/mail-composer');
//Set paths to main templates
composer.config({
templateHtml: '/path/to/template.hbs',
templateText: '/path/to/template.txt',
});
Then use it to compose an email message and send it with a compatible mailer, for example @sendgrid/mail:
//Load mailer
const sgMail = require('@sendgrid/mail');
//Prepare mail data
const mail = {
to: user.email,
from: 'Someone <no-reply@example.org>',
subject: 'Hello {{user.firstName}}',
html: '/path/to/hello.hbs',
text: '/path/to/hello.txt',
};
//Prepare template data
const data = {app, user};
//Compose and send the email
composer
.compose(mail, data)
.then(email => sgMail.send(email));
For more advanced cases where you need to manage locals for your templates, it is recommended to write a wrapper service around the composer, e.g.:
'use strict';
/**
* Dependencies
*/
const moment = require('moment');
const composer = require('@meanie/mail-composer');
const sgMail = require('@sendgrid/mail');
/**
* Configure sendgrid mailer and composer
*/
sgMail.setApiKey('YOUR_SENDGRID_API_KEY');
composer.config({
templateHtml: '/path/to/template.hbs',
templateText: '/path/to/template.txt',
});
/**
* Create locals for email templates
*/
function createLocals(context) {
const {title, version} = context.app.locals;
return {
now: moment(),
user: context.user,
app: {title, version},
};
}
/**
* Export mailer interface
*/
module.exports = {
/**
* Create an email
*/
create(type, context, ...args) {
//Load mail generator and create locals from data
const generator = require('/path/to/emails/' + type);
const locals = createLocals(context);
//Create mail data and append locals
const mail = generator(...args);
const data = Object.assign(mail.data || {}, locals);
//Use composer to generate email instance
return composer.compose(mail, data);
},
/**
* Send one or more emails
*/
send(emails) {
return sgMail
.sendMultiple(emails);
},
};
Next, create a mail generator file (hello.js
):
/**
* Dependencies
*/
const path = require('path');
/**
* Hello email generator
*/
module.exports = function(user) {
//Template paths
const html = path.join(__dirname, 'hello.hbs');
const text = path.join(__dirname, 'hello.txt');
//Prepare data
const to = user.email;
const subject = 'Hi {{user.firstName}}!';
const data = {user};
//Return mail object for composer
return {to, subject, data, html, text};
};
And use the mailer service to easily send out specific emails in a given context:
User
.findOne({...})
.then(user => mailer.create('hello', req, user))
.then(email => email.send());
For working examples, see the Meanie Express Seed project.
A helper is included to append a random string to HTML email contents to prevent GMail
from breaking up your emails by quoting and hiding parts of repeating content. This works
by including a hidden span with random characters for each email before the ending of certain tags, e.g. </p>
.
Manual usage:
let html = '<p>Copyright 2017 My Company</p>';
html = composer.randomize(html, '</p>');
console.log(html);
//<p>Copyright 2017 My Company<span style="display: none !important;">ab4f2</span></p>
Automatic usage via config:
composer.config({
templateHtml: '/path/to/template.hbs',
templateText: '/path/to/template.txt',
autoRandomize: true,
randomizeTags: 'p',
});
Please report any bugs, issues, suggestions and feature requests in the @meanie/mail-composer issue tracker.
Pull requests are welcome! If you would like to contribute to Meanie, please check out the Meanie contributing guidelines.
This package has been kindly sponsored by Hello Club, an all in one club and membership management solution complete with booking system, automated membership renewals, online payments and integrated access and light control. Check us out if you happen to belong to any kind of club or if you know someone who helps run a club!
(MIT License)
Copyright 2016-2020, Adam Reis
FAQs
A utility to help you compose emails using the Handlebars templating engine, compatible with the @sendgrid/mail library
The npm package @meanie/mail-composer receives a total of 0 weekly downloads. As such, @meanie/mail-composer popularity was classified as not popular.
We found that @meanie/mail-composer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.