0.0.6 • Published 11 years ago

co-juice-mailer v0.0.6

Weekly downloads
20
License
-
Repository
github
Last release
11 years ago

About

It is simple mailer for compound.js project. It based on nademailer and swig-email-templates npms.

Features

  • Uses swig, which supports Django-inspired template inheritance.
  • Uses juice, which takes an HTML file and inlines all the <link rel="stylesheet">s and the <style>s.
  • Uses swig-dummy-context which gives you the ability to generate dummy context from a template to aid in an email preview tool.
  • URL rewrite support - you can provide a urlRewriteFn argument to rewrite your links.

Installation

Put the following dependence to your package.json file

"co-juice-mailer":     "latest"

Add this package to "/config/autoload.js" file

And run:

npm install -l

Place "mailer.yml" to your application "config" folder:

development:
  mailer: smtp
  url: "http://localhost:8888"
  from: "no-reply@example.com"
  host: "smtp.gmail.com"
  port: 587
  use_authentication: true
  user: "no-reply@example.com"
  pass: "password"

production:
  mailer: smtp
  url: "http://example.com"
  from: "no-reply@example.com"
  host: "smtp.gmail.com"
  port: 587
  use_authentication: true
  user: "no-reply@example.com"
  pass: "password"

test:
  mailer: test
  url: "http://localhost:8888"
  from: "no-reply@example.com"

Usage

Put you email views into the app/views/ directory with following naming style:

templatename.html

When you want to send email, just call

mailer = require( 'co-juice-mailer' );
callback = function(err, success){
    if( success ){
        console.log('email was sent')
    } else {
        console.log('Error: ' + err)
    }
};
mailer.sendEmail( 'relative_path/templatename', {name: 'my var for template context'},
    {subject: 'Email subject', email: 'recipient@example.com', from: 'me@home'}, callback)

The following variables will be available in the email template context:

  • url - from your config file
  • pathTo - compoundjs helper to use named routes

Besides, default value for "from" option can be configured via "mailer.yml" file too.

License

MIT

Contribution

Contributors are welcome

0.0.6

11 years ago

0.0.5

11 years ago

0.0.4

11 years ago

0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago