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

deep-email-verifier

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deep-email-verifier

This package is to verify email address by using SMTP protocol

  • 1.0.2
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-80%
Maintainers
1
Weekly downloads
 
Created
Source

Email Validator

A simple module to validate an email address using SMTP protocol.

Getting Started

Install like so

npm i add deep-email-verifier --save

or with yarn

yarn add deep-email-verifier

Use like so

javascript
const validateEmail = require("deep-email-verifier")
const main = async () => {
    let emailCheck = await validateEmail("abc@companydomain.com");
}
// Response Success
// { status: 1, email_status: "Catch All" }
// Response Error
// { status: 0, message: "Error Message Text" }

/*
Second parameter is to set Sender
Default sender : info@gmail.com
Sender email address recommended
EX: await validateEmail("abc@companydomain.com","no_reply@companydomain.com");
*/

Keywords

FAQs

Package last updated on 11 Aug 2023

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