Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
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
The npm package bem-site-mail-sender receives a total of 0 weekly downloads. As such, bem-site-mail-sender popularity was classified as not popular.
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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.