Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
bem-site-mail-sender
Advanced tools
E-Mail sending helper. Simple wrapper around nodemailer module
E-Mail sending helper. Simple wrapper around nodemailer module
Add mail-sender dependency to your project:
npm install --save bem-site-mail-sender
Add mail-sender requirement to the code of your module:
var sender = require('bem-site-mail-sender').create({
host: 'smtp.yandex.net', // your smtp e-mail host
port: 25 // your smtp e-mail port
});
For sending e-mails with html body
Arguments:
Example:
sender.sendHtml('from@gmail.com', ['to@gmail.com'], 'Hello World Subject', '<h1>Hello World</h1>', function (err) {
console.log('done');
});
For sending e-mails with attached file(s)
Arguments:
Example:
var attachments = [{
filename: 'package.json',
path: './package.json
}];
sender.sendWithAttachments('from@gmail.com', ['to@gmail.com'],
'Hello World Subject', 'Hello World', attachments, function (err) {
console.log('done');
});
Run tests:
npm run mocha
Run tests with istanbul coverage calculation:
npm run istanbul
Run codestyle verification (jshint and jscs)
npm run codestyle
Maintainer @tormozz48 Please send your questions and proposals to: tormozz48@gmail.com
FAQs
E-Mail sending helper. Simple wrapper around nodemailer module
We found that bem-site-mail-sender demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.