Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
mail-io-sdk
Advanced tools
An SDK for integrating with MailSentry's email verification services, designed to facilitate the management of email validation, risk assessment, and real-time data processing through the MailSentry API.
MailSentry is a powerful and easy-to-use email verification library that helps developers ensure their email lists are clean and valid, improving deliverability and engagement in email campaigns.
Install MailSentry via npm:
npm install mail-io-sdk-sdk
To use MailSentry, you need to initialize the MailSentry
class with your API token and then use the Email
class to interact with the email verification API.
import Mailsentry from 'mail-io-sdk';
const mailsentry = new MailSentry('your-api-token-here');
const email = 'example@domain.com';
const layers = 4 | 8 | 11;
mailsentry.email
.instant({ email, layers })
.then((result) => {
console.log('Verification result:', result);
})
.catch((error) => {
console.error('Error:', error);
});
const emails = ['user1@example.com', 'user2@example.com'];
const layers = 4 | 8 | 11;
mailsentry.email
.bulk({ emails, layers })
.then((result) => {
console.log('Bulk verification report ID:', result);
})
.catch((error) => {
console.error('Error:', error);
});
To get the results of a bulk verification:
const reportId = 'your-report-id';
mailsentry.email
.result({ id: reportId, limit: 10, page: 1 })
.then((result) => {
console.log('Bulk verification results:', result);
})
.catch((error) => {
console.error('Error:', error);
});
You can also use MailSentry via popular CDNs like jsDelivr and UNPKG for easy integration without installing via npm:
<script src="https://cdn.jsdelivr.net/npm/mail-io-sdk/dist/index.js"></script>
<script src="https://unpkg.com/mail-io-sdk/dist/index.js"></script>
This makes it easy to include MailSentry in your web applications by simply referencing the library using a <script>
tag.
Licensed under the MIT License.
Want to contribute? Please check out our contributing guidelines.
For support, please create an issue.
FAQs
An SDK for integrating with MailSentry's email verification services, designed to facilitate the management of email validation, risk assessment, and real-time data processing through the MailSentry API.
The npm package mail-io-sdk receives a total of 2 weekly downloads. As such, mail-io-sdk popularity was classified as not popular.
We found that mail-io-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.