cdlib-email
v1.0.2
Published
email utils
Readme
cdlib-email
var cdMail = require('cdlib-email');
var emailMsg = cdMail.msgEmail;
//setup message
emailMsg.smtpServer = 'smtp.out.com';
emailMsg.to = '[email protected]';
emailMsg.from = '[email protected]';
emailMsg.subject = 'some subject';
emailMsg.htmlBody = '<b>Here</b> is the body in Html';
emailMsg.body = 'Here is the body as text';
//send message
cdMail.sendEmailHtml(emailMsg); //send as html
cdMail.sendEmail(emailMsg); //send as text
