Gathering detailed insights and metrics for feathers-sendwithus-batch
Gathering detailed insights and metrics for feathers-sendwithus-batch
Gathering detailed insights and metrics for feathers-sendwithus-batch
Gathering detailed insights and metrics for feathers-sendwithus-batch
Feathers service for sending mailers with sendwithus
npm install feathers-sendwithus-batch
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
GPL-3.0 License
1 Stars
19 Commits
1 Forks
2 Watchers
1 Branches
2 Contributors
Updated on Aug 08, 2022
Latest Version
0.0.6
Package Id
feathers-sendwithus-batch@0.0.6
Size
22.86 kB
NPM Version
4.0.5
Node Version
7.2.1
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
Feathers service for sending mailers with sendwithus.
STATUS: Under development
npm install --save feathers-sendwithus
1const sendwithusService = require('feathers-sendwithus'); 2 3module.exports = function() { 4 const app = this; 5 const config = app.get('mailer').sendwithus; 6 app.use('/mailers', sendwithusService(config)); 7};
apiKey
- Sendwithus api key (Required)
templateNameMapping
- Will map template names to IDs when doing api calls (default: true
)
templateNameCacheExpiry
- Duration before templates are fetched again to be
mapped. *Set larger or smaller depending on how
often you create new templates or change template names
(default 1h (one hour))
templateMapper
- Custom function which maps templates (default: the built in cached template mapper)
e.g.
1const myMap = { friendly: 'templateId' }; 2 3const service = sendwithusService({ 4 ... 5 templateMapper: (t) => Promise.resolve(myMap[t] || t), 6}); 7 8service.create({ 9template: 'friendly', 10... 11}) will send { template: 'templateId' };
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 1/19 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
64 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More