Gathering detailed insights and metrics for mailgun-js-sdk
Gathering detailed insights and metrics for mailgun-js-sdk
Gathering detailed insights and metrics for mailgun-js-sdk
Gathering detailed insights and metrics for mailgun-js-sdk
@nuteruls/mailgun-js-sdk
A simple node mailgun sdk
mailgun-node-js
A javascript sdk for Mailgun built with webpack, babel & es6. This can be used in node or in the browser*.
@chance/mailgun-js
A JavaScript SDK for Mailgun.
@teracrafts/huefy-sdk-js
JavaScript/TypeScript SDK for Huefy - App Mail Templates with dynamic email sending
npm install mailgun-js-sdk
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
1 Stars
63 Commits
1 Forks
1 Watchers
5 Branches
1 Contributors
Updated on Oct 04, 2022
Latest Version
1.2.2
Package Id
mailgun-js-sdk@1.2.2
Unpacked Size
9.26 kB
Size
3.67 kB
File Count
15
NPM Version
8.11.0
Node Version
18.3.0
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
A simple Mailgun SDK to send e-mails.
1npm install mailgun-js-sdk
1const MailgunSDK = require('mailgun-js-sdk'); 2const Mailgun = new MailgunSDK({ 3 apiKey: 'YOUR_API_KEY', 4 baseUrl: 'https://api.mailgun.net/v3/', 5});
1async function sendMessage() => { 2 const domain = 'domain.used.on.mailgun.org'; 3 const message = { 4 from: 'From Name <from@email.com>', 5 to: 'To <to@email.com>', 6 subject: 'Mocallu Mailgun SDK Test', 7 text: 'This is a simple e-mail test', 8 html: `<html><strong>This is a simple e-mail test</strong></html>`, 9 'o:tag': 'test-sdk', 10 'o:testmode': true, 11 }; 12 const result = await Mailgun.sendMessage(domain, message); 13 console.log(result); 14}; 15sendMessage();
1const domainsList = Mailgun.getDomains(); 2const domain = Mailgun.getDomains('especific.domain.mailgun.org');
This SDK is not finished, feel free to help on development.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 3
Details
Reason
Found 0/6 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
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
project is not fuzzed
Details
Reason
security policy file not detected
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
14 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