npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

email-smtp-validator

v1.0.4

Published

Validates emails using regex, disposable email blacklists, DNS records, and SMTP server responses.

Downloads

299

Readme

Email SMTP Validator

uses regex to verify email addresses, looks up common mistakes, checks against disposable email lists, looks for DNS records, and examines SMTP server feedback.

Live Example

Here's an example application that uses Email-SMTP-Validator demo-link

Prerequisites

Make sure you have the following software installed:

  • Node.js (version 12 or higher)
  • npm (Node Package Manager) or yarn

Installation

Install the module through NPM:

$ npm install email-smtp-validator --save

Install the module through yarn:

$ yarn add email-smtp-validator --save

Key Features

  • Validates email regular expression
  • Verifies that the email was not created using disposable-email-domains from a throwaway email service.
  • Validates MX records are present on DNS.
  • Validates SMTP server is running.
  • Validates mailbox exists on SMTP server.
  • typescript support.

Examples

Include the module, create a new EmailValidator object and call verify method:

import { EmailValidator } from "email-smtp-validator";

const emailValidator = new EmailValidator({{
    sender: '[email protected]', // optional default value null
    validateRegex: true , // default value true
    validateMx: true, // default value true
    validateDisposable: true, // default value false
    validateSMTP: true, // default value false
    validateSMTPdeep?: true, // default value false
    timeout: 1000 *10, // default value 8 seconds
    port: 25, // default port 25
  }});

 const  res = await emailValidator.verify('[email protected]');
 //  {
 //     regex : {valid : true},
 //     disposable : {valid : true},
 //     mx : {valid : true},
 //     smtp : {valid : false , reason : "Mailbox not found"},
 //  }

When a domain does not exist or has no MX records, the domain validation will fail, and the smtp validation will not be included in the response because it could not be performed.

Configuration options

timeout

Set a timeout in seconds for the smtp connection. Default: 8000.

Port

Set a port according to your use case for smtp/smtps . Default: 25.

License

This project is licensed under the terms of the MIT License. You are free to modify and distribute the software in accordance with the conditions specified in the MIT License. Feel free to adapt the application to suit your needs while complying with the requirements of the license.