npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ht-mailer

v0.0.12

Published

A hudson-taylor mailer service that keeps blacklists and a mail queue in mongoDB.

Downloads

15

Readme

#ht-mailer

ht-mailer is a hudson-taylor service for sending email, you can run it as a stand-alone service or use it in-process via the hudson-taylor LocalClient connector.

Key features

  • ht-mailer uses nodemailer, and can communicate with any nodemailer tranport, ie: AWS Simple Message Service, SMTP server, etc.

  • ht-mailer manages an email blacklist, and provides easy to use APIs for managing your blacklist (think unsubscribe tokens, etc).

  • ht-mailer keeps a message queue, and will retry emails if the transport is currently unavailable.

  • ht-mailer can be configured with mail templates (using handlebars notation), either plain text, html or markdown (generates both plain text and html).

  • ht-mailer currently requires a MongoDB DB handle which it uses to store blacklists and message queues. In the future this can be made pluggable.

Public API

queue

Queue an email message to be delivered.

s.remote("mailer", "queue", msg, callback);
send

Skip the queue and send directly

s.remote("mailer", "send", msg, callback);
blockToken

Block an email address that corresponds to token

s.remote("mailer", "blockToken", {token : <token>}, callback);
blockEmail

Block an email address

s.remote("mailer", "blockEmail", {email : <email>}, callback);
unblockEmail

Unblock an email address

s.remote("mailer", "unblockEmail", {email : <email>}, callback);

Using ht-mailer as a stand-alone service.

  • copy config/example.json to config/production.json (or development.json etc) and add your config.
$> NODE_ENV=production node server.js

You can now communicate with it using the hudson-taylor client library, ie:

var s = new ht.Services();
s.connect("mail", new ht.HTTPClient("mail", "localhost", 7001));

Send a templated message to jemma:

var msg = { 
    to : ['[email protected]'],
    from : '[email protected]',
    subject : 'Example Email {{foo}}',
    data : { foo : 123 },
    template : 'approval' // name of the template to use
}

s.remote("mailer", "queue", msg, function(err, res) { 
    // Do things with the response here! 
});

Send a regular text/html email to one person:

var msg = { 
    to : ['[email protected]'],
    from : '[email protected]',
    subject : 'Example email to {{name}}',
    data : { name : "Joe" }
    text : "Hi {{name}}!",
    html : "<h1>Hi {{name}}!</h1>"
}

s.remote("mailer", "queue", msg, function(err, res) {
    // do stuff!
});

Using ht-mailer as an HT service.

ht-mailer service setup requires a config object, and a mongodb connection:

var mailer = require("ht-mailer");
var server = new require('hudson-taylor').Server();

var config; // See config documentation below
var db; // Set up a mongodb connection here

server.add("mailer", mailer.setup, config, db);

// Start communicating with an ht client/json-rpc

Config options

Config is namespaced under an 'ht-mailer' key to play nicely with other services being configured together.

Example setup using SES transport, with some pre-defined templates

{ 
    'ht-mailer' : {
        port : 7001,

        tansport : {
            type : 'SES', //or SMTP, etc
            'SES-arguments' : {
                accessKeyID : '123..',
                secretAccessKey : '456..'
            }
        }, 

        templates : {
            'welcome' : {markdown : '/var/myservice/templates/welcome.md'},
            'unsubscribe' : {html : '/var/myservice/templates/unsub.html',
                             text : '/var/myservice/templates/unsub.txt'},
            'textemail' : {text : '/var/myservice/templates/boring.txt'}
        }
            
    }
}

Templates

All tempaltes use handlebars notation, which will be populated with the data provided to the send API.

Special keys you can use in templates, further to the data the caller provides are:

  • unsubscribeToken - This token can be passed to the unsubscribe API, which will block email being sent to this address in the future. ie:

    <a href='http://example.com/unsub/{{unsubscribeToken}}'>Unsubscribe here.</a>

    Note, when passing multiple email addresses in the 'to' field, the unsubscribe token will only apply to the first address in the list. I don't recommend using unsubscribeToken in an email with multiple to recipients, it doesn't make much sense.

Templates are configured via the tempaltes attribute in the config JSON, and can contain a file path for: markdown, text, html.

If type markdown is provided, it will be used to produce html AND text output.