0.4.9 • Published 10 months ago

mailor v0.4.9

Weekly downloads
65
License
MIT
Repository
github
Last release
10 months ago

Mailor

This module glues Maildev and MJML with some Pug and Mustache to enable an easier development workflow for mailings on NodeJS.

NPM version Build status Coverage Status Known Vulnerabilities

Get it globally or within your project:

$ npm i -g mailor # or `npm i mailor --save-dev`

Use mailor init to create a templates/ directory with an example.pug ready play with!

Now, you can start creating templates using pure .pug files:

templates/test1.pug

mjml
  Body: Section
    Column: Text
      h1 It works!

Shortcuts for mj-* tags are provided as <Column /> to produce <mj-column /> respectively those tags supports the class attribute by default while mj-* requires css-class instead.

Build or watch for changes, e.g.

$ mailor watch templates -d generated --no-open

Once built, try sending it through the local SMTP, e.g.

$ mailor send generated/test1.html

Open http://localhost:1081 and see how it looks!

Templating support

By default, e-mail templates are built using .pug files.

However, you can use Mustache, Handlebars or Liquid templates for further rendering, e.g.

mjml
  Body: Section
    Column: Text
      h1 Hello, {{firstName}}!

The example above generates the required HTML for the MJML post-processing, this lefts the {{...}} mustaches without changes.

Now, when you call sendMail(...) you can pass { data: { firstName: 'John' } } and the mustache will be rendered as expected.

Change the post-renderer with Mustache.setEngine('mustache' | 'handlebars' | 'liquidjs') in your code.

LESS.js support

You can pre-process and embed the resulting stylesheet through LESS, e.g.

mjml
  Head
    Style(src='_your_stylesheets.less')

The src attribute used here is non MJML standard, so mj-style won't work the same way also, if your file is not .less then it'll be embedded without changes.

Including files

By default all files or directories starting with _ are ignored by the compiler, e.g.

mjml
  Head
    include _/header

Live preview

The included live-preview app allows you to watch your generated templates, input variables are extracted directly from your templates so you can test with real data.

You can leverage on the jsonfile option to setup default variables too notice that on Mustache some values can be objects, arrays or functions.

API

By default maildev is enabled when watch mode is used.

The send command uses nodemailer for sending messages through.

You can, however, reuse this module too:

const nodemailer = require('nodemailer');

const mailer = require('mailor').getMailer({
  transport: nodemailer.createTransport(...),
  internalErrors: [],
});

mailer.sendMail({
  attachments: [{
    filename: `receipt-${receipt.id}.xml`,
    content: receipt.data,
  }],
  headers: {
    'x-mailgun-variables': JSON.stringify({ t: 42 }),
  },
  callback(options) {
    options.headers['x-mailgun-tag'] = 'test';
  },
  template: 'path/to/tpl.html',
  subject: 'Test',
  email: 'test@example.com',
  data: { ... },
});

You MUST provide a working transport and optionally a list of internal error messages to be aware of, if any matches an exception will be thrown.

Using input

Local variables are given as data and they're rendered by Mustache to build the message to be sent.

Locals for pug-templates MUST be provided as values during mailor invocation, e.g.

$ mailor build templates -d generated username="John Doe" token="x-f4c8"
0.4.9

10 months ago

0.4.8

10 months ago

0.4.7

1 year ago

0.4.6

1 year ago

0.4.5

2 years ago

0.4.4

2 years ago

0.4.1

2 years ago

0.4.3

2 years ago

0.4.2

2 years ago

0.3.15

2 years ago

0.3.14

2 years ago

0.4.0

2 years ago

0.3.13

2 years ago

0.3.12

2 years ago

0.3.11

2 years ago

0.3.10

2 years ago

0.3.9

3 years ago

0.3.8

3 years ago

0.3.7

3 years ago

0.3.6

3 years ago

0.3.0

3 years ago

0.3.5

3 years ago

0.2.6

3 years ago

0.3.2

3 years ago

0.3.1

3 years ago

0.3.4

3 years ago

0.3.3

3 years ago

0.2.5

3 years ago

0.2.4

3 years ago

0.2.3

3 years ago

0.2.2

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.0.23

4 years ago

0.1.0

4 years ago

0.0.22

4 years ago

0.0.21

4 years ago

0.0.20

4 years ago

0.0.19

4 years ago

0.0.18

4 years ago

0.0.17

4 years ago

0.0.16

4 years ago

0.0.15

4 years ago

0.0.14

4 years ago

0.0.13

4 years ago

0.0.12

4 years ago

0.0.11

4 years ago

0.0.10

4 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago