mumail

0.3.1 • Public • Published

mumail

NPM Version

send mail in mustache

usage

npm install mumail
Mumail = require 'mumail'
 
mumail = new Mumail
    templatePath: "#{__dirname}/templates/"
    from: 'noreply@localhost'
    transport:
        host: 'smtp.test.com'
        port: 465
        auth:
            user: "username"
            pass: "password"
        secure: yes
 
mumail.send
    to: "user@somehost.com"
    subject: "Welcome!"
    template: "welcome"
    data:
        username: 'unique-username'
.then ->
    console.log "sent"

welcome.html located in ./templates

<html>
    <body>
        welcome {{username}}
    </body>
</html>

Dependencies (3)

Dev Dependencies (1)

Package Sidebar

Install

npm i mumail

Weekly Downloads

0

Version

0.3.1

License

BSD

Last publish

Collaborators

  • zf