0.0.16 • Published 9 years ago
ndx-gmail v0.0.16
ndx-gmail
send email with gmail for ndx-framework apps
install withnpm install --save ndx-gmail jade
requirements
make a directory in root called /views and put your email templates in thereviews/mail.jade
html
head
title= subject
body
h1= subject
p= messageexample
src/server/app.coffee
require 'ndx-server'
.config
database: 'db'
.use 'ndx-gmail'
.controller (ndx) ->
ndx.gmail.send
template: 'mail.jade'
to: 'email@email.com'
subject: 'email subject'
message: 'email message'
, (err) ->
if not err
console.log 'email sent'environment variables
| environment | config | description |
|---|---|---|
| GMAIL_USER | gmailUser | gmail username |
| GMAIL_PASS | gmailPass | gmail password |