ndx-gmail
v0.0.16
Published
connect to gsuite and send emails for ndx-framework
Downloads
7
Readme
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= message
example
src/server/app.coffee
require 'ndx-server'
.config
database: 'db'
.use 'ndx-gmail'
.controller (ndx) ->
ndx.gmail.send
template: 'mail.jade'
to: '[email protected]'
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|