@jnode/mail
v0.0.2
Published
Simple email package for Node.js.
Downloads
4
Maintainers
Readme
JustMail
Simple email package for Node.js.
npm i @jnode/mailIMPORTANT NOTE: This is a package in early development, may contain many bugs and some features aren't finished yet, please use it carefully.
Sending an email
const smtp = require('@jnode/mail').smtp;
const c = new mail.SMTPClient('[email protected]');
c.sendMail(
'[email protected]',
'Subject',
'Body',
{
localAddress: 'Local IP Address can be verify by SPF record.' // for multi internet connection use
}
);