1.0.2 • Published 9 years ago

cdlib-email v1.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

cdlib-email

var cdMail = require('cdlib-email');

var emailMsg = cdMail.msgEmail;

//setup message
emailMsg.smtpServer = 'smtp.out.com';
emailMsg.to = 'foo@bar.com';
emailMsg.from = 'bar@foo.com';
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
1.0.2

9 years ago

1.0.0

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago