mumail
v0.3.1
Published
send mail in mustache
Downloads
4
Readme
mumail
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: "[email protected]"
subject: "Welcome!"
template: "welcome"
data:
username: 'unique-username'
.then ->
console.log "sent"
welcome.html
located in ./templates
<html>
<body>
welcome {{username}}
</body>
</html>