1.3.5 • Published 3 days ago

nodemailer-mjml v1.3.5

Weekly downloads
-
License
MIT
Repository
github
Last release
3 days ago

Installation

yarn add nodemailer-mjml
# or using npm install nodemailer-mjml

Basic usage

import { createTransport } from "nodemailer";
import { nodemailerMjmlPlugin } from "nodemailer-mjml";

const transport = createTransport({...});

// Register nodemailer-mjml to your nodemailer transport
transport.use('compile', nodemailerMjmlPlugin({/*Pass desired plugin options here*/}));

Usage examples

With template

Template-overview

using nodemailer-mjml with a template is the simplest to start

import { createTransport } from "nodemailer";
import { nodemailerMjmlPlugin } from "../src/index";
import { join } from "path";

const transport = createTransport({
    host: "localhost",
    port: 25
});

transport.use(
    "compile",
    nodemailerMjmlPlugin({ templateFolder: join(__dirname, "mailTemplates") })
);

const sendTemplatedEmail = async () => {
    await transport.sendMail({
        from: '"John doe" <john.doe@example.com>',
        to: "doe.john@.com",
        subject: "Welcome",
        templateName: "simpleTemplate", // <- Targeted template name
        templateData: { // <- Data to be injected in the template
            companyLogoURL: "https://www.kadencewp.com/wp-content/uploads/2020/10/alogo-2.png",
            heroImageURL: "https://www.kadencewp.com/wp-content/uploads/2020/10/alogo-2.png",
            articles: [
                {
                    articleImageURL: "https://api.lorem.space/image/watch?w=150&h=150",
                    articleName: "Watch 1",
                    articleDescription: "lorem ipsum dolor sit amet",
                },
                {
                    articleImageURL: "https://api.lorem.space/image/watch?w=150&h=150",
                    articleName: "Watch 2",
                    articleDescription: "lorem ipsum dolor sit amet"
                },
                {
                    articleImageURL: "https://api.lorem.space/image/watch?w=150&h=150",
                    articleName: "Watch 3",
                    articleDescription: "lorem ipsum dolor sit amet"
                },
            ]
        },
    });
};

sendTemplatedEmail();

This complete example can be found in the examples folder

With layout template

Layout-overview

Template layout allow to reuse the same layout for multiple templates

import { createTransport } from "nodemailer";
import { nodemailerMjmlPlugin } from "../src/index";
import { join } from "path";

const transport = createTransport({
    host: "localhost",
    port: 25
});

transport.use(
    "compile",
    nodemailerMjmlPlugin({ templateFolder: join(__dirname, "mailTemplates") })
);

const sendTemplatedEmail = async () => {
    await transport.sendMail({
        from: '"John doe" <john.doe@example.com>',
        to: "doe.john@.com",
        subject: "Welcome",
        templateLayoutName: "layoutTemplate",
        templateLayoutSlots: {
            header: "partials/header",
            content: "partials/content",
            footer: "partials/footer",
        },
        templateData: {
            content: {
                imageURL: "http://5vph.mj.am/img/5vph/b/1g8pi/068ys.png"
            }
        }
    });
};

sendTemplatedEmail();

This complete example can be found in the examples folder

Documentation

Plugin options

Plugin options are defined by the IPluginOptions interface

optiontypedescriptiondefault
templateFolderstringPath of the dir containing your MJML templateundefined
templatePartialsFolder?stringPath relative to templateFolder, if defined when using a template layout it will be folder where nodemailer-mjml while try to find fallback slots if one or more is undefinedundefined
mjmlOptions?MJMLParsingOptionsOptions that would be passed to MJML compiler (see more) mjml doc{validationLevel: "strict"}
minifyHtmlOutput?booleanuse to enable/disable html minification using html-minifiertrue
htmlMinifierOptions?OptionsOptions that would be passed to html-minifier (see more) html-minifier docundefined

Send mail options

nodemailer-mjml bring 4 new params to the sendMail function

optionstypedescriptiondefault
templateName?stringName of the file relative to templateFolder (without extension) corresponding to your templateundefined
templateLayoutName?stringName of the file relative to templateFolder (without extension) corresponding to your template layout fileundefined
templateLayoutSlots?ObjectObject containing path of partial file relative to templateFolder (without extension) that will be injected to the corresponding slotundefined
templateData?ObjectObject containing data that would be used by mustache template compilerundefined

Tests

This plugin, have multiple tests suites (unit, integration) to ensure that everything is working as expected You can run the tests locally by running the following command

# watch mode
docker compose run --rm tests yarn test:watch
#single run
docker compose run --rm tests yarn test

Credit

This software uses the following open source packages:

Contributing

All contributions are welcome 🫡

1.3.5

3 days ago

1.3.4

14 days ago

1.3.3

29 days ago

1.3.2

1 month ago

1.3.1

2 months ago

1.3.0

3 months ago

1.2.54

4 months ago

1.2.52

4 months ago

1.2.51

4 months ago

1.2.50

5 months ago

1.2.49

5 months ago

1.2.48

5 months ago

1.2.41

7 months ago

1.2.42

7 months ago

1.2.40

8 months ago

1.2.45

6 months ago

1.2.46

6 months ago

1.2.43

7 months ago

1.2.44

7 months ago

1.2.47

6 months ago

1.2.38

8 months ago

1.2.39

8 months ago

1.2.37

8 months ago

1.2.20

12 months ago

1.2.23

11 months ago

1.2.24

11 months ago

1.2.21

12 months ago

1.2.22

12 months ago

1.2.27

10 months ago

1.2.28

10 months ago

1.2.25

11 months ago

1.2.26

11 months ago

1.2.29

10 months ago

1.2.30

10 months ago

1.2.31

9 months ago

1.2.35

9 months ago

1.2.32

9 months ago

1.2.33

9 months ago

1.2.36

9 months ago

1.2.18

1 year ago

1.2.19

1 year ago

1.2.16

1 year ago

1.2.17

1 year ago

1.2.15

1 year ago

1.2.8

1 year ago

1.2.7

1 year ago

1.2.6

1 year ago

1.2.5

1 year ago

1.2.4

1 year ago

1.2.3

1 year ago

1.2.9

1 year ago

1.2.12

1 year ago

1.2.13

1 year ago

1.2.10

1 year ago

1.2.11

1 year ago

1.2.14

1 year ago

1.2.0

1 year ago

1.2.0-0

1 year ago

1.1.6

1 year ago

1.1.5

2 years ago

1.1.4

2 years ago

1.2.2

1 year ago

1.2.1

1 year ago

1.1.3

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago