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

mailman

v0.3.3

Published

Send emails in a comfortable way via models.

Downloads

74

Readme

Mailman

Send emails in a comfortable way via models.

Circle CI

Features

  • Uses nodemailer under the hood to send out emails
  • All nodemailer transports (including 3rd-party ones) are supported
  • Uses consolidate.js to render email templates (views)
  • ActiveMailer-inspired API, very comfortable
  • Clean, simple and lightweight code base (162 sloc)

Installation

npm install mailman --save

Warning: Only Node.js v0.11.x and higher with --harmony enabled is required:

node --harmony something.js

Note: In order for the following examples to work, you need use something like co to run generators. Another note: If you want to use ES6 classes (like in the following examples), use babel. If not, there is an alternative API left from previous versions of Mailman.

Usage

Configuration

To configure Mailman's basic options:

var Mailman = require('mailman');

// path to a folder where
// your views are stored
Mailman.options.views.path = 'path_to_views/';

// cache templates or not
Mailman.options.views.cache = false;

// default template engine
// guesses by extension otherwise
Mailman.options.views.default = 'ejs';

To setup a transport:

Mailman.configure('gmail', {
    user: '[email protected]',
    password: 'password'
});
  • Configuring default SMTP transport (options passed directly to nodemailer):
Mailman.configure({
   host: 'smtp.gmail.com',
   port: 465,
   secure: true,
   auth: {
       user: '[email protected]',
       pass: 'password'
   }
});
  • Configuring with 3rd-party nodemailer transport:
// assuming that transport is
// initialized nodemailer transport

Mailman.configure(transport);

Views

Mailman uses consolidate.js to render many template engines easily. Mailman expects, that your folder with views is structured like this:

- user/
    - welcome.ejs
    - forgot_password.ejs
    - reset_password.ejs

In this folder structure, it is clear that User mailer has welcome, forgot_password and reset_password emails.

Defining Mailer and sending

To send out emails, you need to define mailer first. Mailer is a Class, that contains emails for certain entity. For example, User mailer may contain welcome, forgot password, reset password emails. Each of the emails is represented as a usual function, which should set template variables for a view.

Note: Email function name must be the same as its view name (camelCased)

class UserMailer extends Mailman.Mailer {
    // need to manually set mailer name
    // UserMailer => user
    get name () { return 'user'; }

    // default from for all emails
    get from () { return '[email protected]'; }

    // default subject for all emails
    get subject () { return 'Hello World'; }

    // welcome email
    welcome () {
        // set all your template variables
        // on this

        this.full_name = 'John Doe';
        this.currentDate = new Date();
    }

    // forgot password email
    forgotPassword () {
        this.token = 12345;
    }
}

To send out each of these emails, simply:

var mail;

mail = new UserMailer({ to: '[email protected]' }).welcome();
yield mail.deliver();

mail = new UserMailer({ to: '[email protected]' }).forgotPassword();
yield mail.deliver();

Tests

npm test

License

Mailman is released under the MIT License.