Socket
Socket
Sign inDemoInstall

datamail

Package Overview
Dependencies
142
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    datamail

Data-driven emails engine


Version published
Maintainers
1
Created

Changelog

Source

0.2.0 (2019-11-24)

Features

  • add support for includes (44ba76f)
  • introduce --mjml option (ee9c902)

Readme

Source

DataMail

npm

Build data-driven emails using Liquid template engine and MJML. This is a small library to render HTML from Liquid templates populated with data from any public API.

Usage

Install the package globally:

npm install -g datamail

Then use the command to render a HTML from a template file:

datamail template.liquid

This will generate the HTML file and put it next to the provided template. You can use clear HTML in templates but DataMail was initially developed for emails therefore it understands MJML out of the box. The following example will get data from GitHub API and render HTML with the search results.

{% import repositories from 'https://api.github.com/search/repositories?q=liquid+template+engine&per_page=5' %}

<mjml>
  <mj-body>
    <mj-section background-color="#fff">
      <mj-column>
        <mj-text font-size="20px">Top 5 Liquid Template Engines on GitHub</mj-text>

        {% for item in repositories.items %}
          <mj-text><a href="{{ item.url }}">{{ item.full_name }}</a></mj-text>
          <mj-text padding-top="0">{{ item.description }}</mj-text>
        {% endfor %}
      </mj-column>
    </mj-section>
  </mj-body>
</mjml>

License

This project is available under the MIT License.

Keywords

FAQs

Last updated on 24 Nov 2019

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc