Giter VIP home page Giter VIP logo

trebuchet's Introduction

Trebuchet

Let's chuck some email!

Trebuchet is a node.js module for super simple email transactions using the Postmark API and Mustache with Juice for templating. Trebuchet was designed with simple email rendering, batching and API operations in mind.

Build Status

Installation

npm install trebuchet

Basic Use (Fling Pattern)

var trebuchet = require('trebuchet')('yourapikey');

trebuchet.fling({
    params: {
        from: '[email protected]',
        to: '[email protected]',
        subject: 'This is only a test of the fling pattern'
    },
    html: __dirname + '/path/to/template/fling.html',
    text: __dirname + '/path/to/template/fling.txt',
    data: {
        foo: 'Bar'
    }
}, function (err, response) {
    // Win!
});

Basic Use (Fling Pattern with HTML friendly inlined-CSS support)

var trebuchet = require('trebuchet')('yourapikey');

trebuchet.fling({
    params: {
        from: '[email protected]',
        to: '[email protected]',
        subject: 'This is only a test of the fling pattern'
    },
    html: __dirname + '/path/to/template/fling.html',
    css: __dirname + '/path/to/template/fling.css',
    text: __dirname + '/path/to/template/fling.txt',
    data: {
        foo: 'Bar'
    }
}, function (err, response) {
    // Win!
});

Batch Sender (Load --> Fire Pattern)

The batch sender uses the Postmark API's batch method to support sending groups of messages (up to 500 at a time).

NOTE: You can also pass a css variable to load a stylesheet that will be inlined using juice.

var trebuchet = require('trebuchet')('yourapikey');

trebuchet.load({
    params: {
        from: '[email protected]',
        to: '[email protected]',
        subject: 'This is only a test of the load/fire pattern'
    },
    html: __dirname + '/path/to/template/fire.html',
    text: __dirname + '/path/to/template/fire.txt',
    data: {
        foo: 'Bar',
        name: 'Bubba'
    }
}, function (err, response) {
    // Loaded!
});
trebuchet.fire(function (err, response) {
    // Win!
});

Templating

Trebuchet uses Mustache templates to make sending dynamic HTML and plain-text emails super-duper simple.

NEW: We've added support Juice which allows one to pass a css variable and inline the CSS with the HTML template for email-friendly CSS... KA POW!

An example template:

<html>
    <body>
        <h1>{{greeting}}</h1>
    </body>
</html>

With example data:

{
    greeting: 'Hello World!'
}

Result (without CSS argument):

<html>
    <body>
        <h1>Hello World!</h1>
    </body>
</html>

Result (with CSS argument, e.g. "some/path/to/template.css"):

<html>
    <body style="color:yellow;background-color:black;">
        <h1>Hello World!</h1>
    </body>
</html>

Pre-rendered content

Trebuchet also accepts pre-rendered strings and buffers. Simply add the prerendered flag and ommit the data in your options.

var trebuchet = require('trebuchet')('yourapikey');

trebuchet.load({
    params: {
        from: '[email protected]',
        to: '[email protected]',
        subject: 'Sending email using prerendred texts'
    },
    prerendered: true,
    html: '<h2>This email was rendered externally!</h2>', //alternatively, pass in a buffer
    text: 'This email was rendered externally!',
}, function (err, response) {
    // Loaded!
});

Testing

npm test

trebuchet's People

Contributors

jackaperkins avatar niftylettuce avatar thisandagain avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.