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

dotsemailvalidation3

v1.0.5

Published

DOTS Email Validation 3 (EV3) is a web service that provides validity and metadata information about an email address.

Downloads

3

Readme

Service Objects - Email Validation 3

DOTS Email Validation 3 (EV3) is a web service that provides validity and metadata information about an email address. The service provides common data elements such as syntax validity along with more refined data such as SMTP failures and deliverability flags.

EV3 can help provide instant email data verification to websites or enhancement to contact lists.

Table of Contents

Getting Started

  1. Create a new Node.js project  

  2. Install the EV3 module

    npm install dotsemailvalidation3
  3. Load in the module to your project

    var EmailValidation3 = require(dotsemailvalidation3);
  4. Call the validateEmailAddress() method

    EmailValidation3.validateEmailAddress(
        EmailAddress,
        AllowCorrections, 
        Timeout, 
        LicenseKey, 
        Environment, 
        function(err, response){...}
    );

ValidateEmailAddress

Inputs

| Parameter | Type | Value | | ---------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | EmailAddress | String | The email address you wish to validate. | | AllowCorrections | String | Accepts true or false. The service will attempt to correct an email address if set to true. Otherwise the email address will be left unaltered if set to false. | | Timeout | String | This value specifies how long the service is allowed to wait for all real-time network level checks to finish. Real-time checks consist primarily of DNS and SMTP level verification. Timeout time is in milliseconds. A minimum value of 200ms is required. | | LicenseKey | String | Your license key to use the service. | | Environment | String | "trial" OR "production" |

Response

{
	"ValidateEmailInfo":{
		"Score":2147483647,
		"IsDeliverable":"String content",
		"EmailAddressIn":"String content",
		"EmailAddressOut":"String content",
		"EmailCorrected":true,
		"Box":"String content",
		"Domain":"String content",
		"TopLevelDomain":"String content",
		"TopLevelDomainDescription":"String content",
		"IsSMTPServerGood":"String content",
		"IsCatchAllDomain":"String content",
		"IsSMTPMailBoxGood":"String content",
		"WarningCodes":"String content",
		"WarningDescriptions":"String content",
		"NotesCodes":"String content",
		"NotesDescriptions":"String content"
	},
	"Error":{
		"Type":"String content",
		"TypeCode":"String content",
		"Desc":"String content",
		"DescCode":"String content"
	},
	"Debug":"String content"
}

Features

For trial keys, set the Environment variable to "trial". Once you purchase a production license key, swap the Environment variable to "production" and change out your LicenseKey to your new license key.

The module automatically handles failover logic when using the production environment. This helps to ensure your web service requests are made sucessfully regardless of any network interuptions.

Developer Guide

For a deeper dive into our API, visit our developer guides.

Developer Guide

License Key

If you’re ready to put it to the test, sign up for a free API trial key and get 500 free transactions.

Request a Trial Key