Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mail-io-sdk

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mail-io-sdk

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.

  • 0.0.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
0
Weekly downloads
 
Created
Source

MailSentry - Powerful Email Verification Library

npm version License: MIT

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.

Features

  • 🚀 Real-Time Email Verification
  • 📧 Bulk Email Verification for marketing campaigns.
  • 🌐 Domain and SMTP Checks to ensure reliability.
  • 🔒 SPF/DKIM Validation for improved deliverability.
  • 📡 API Integration for seamless automation.

Installation

Install MailSentry via npm:

npm install mail-io-sdk-sdk

Usage

Initialization

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');

Single Email Verification

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);
  });

Bulk Email Verification

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);
  });

Get Verification Results

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);
  });

CDN Usage

You can also use MailSentry via popular CDNs like jsDelivr and UNPKG for easy integration without installing via npm:

jsDelivr

<script src="https://cdn.jsdelivr.net/npm/mail-io-sdk/dist/index.js"></script>

UNPKG

<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.

License

Licensed under the MIT License.

Contributing

Want to contribute? Please check out our contributing guidelines.

Contact

For support, please create an issue.

Keywords

FAQs

Package last updated on 04 Nov 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc