1.2.6 • Published 6 years ago

is-email-valid-full v1.2.6

Weekly downloads
3
License
Apache-2.0
Repository
github
Last release
6 years ago

is-email-valid-NPM

NodeJS NPM library for determining if an email address is fully valid. This is much deeper than simply checking if the text string looks like an email address. is-email-valid-full will do all of the following:

  • Check if the email address is valid syntactically
  • Contact the mail server and verify the existence of the account, without actually sending any email

This ensures that the email addresses that you capture are real and will not bounce.

Get Started

  1. Install is-email-valid-full NPM package:
npm install is-email-valid-full
  1. Get a free tier no-expiration API Key from Cloudmersive, which includes 50,000 calls per month.

  2. Call the API. Here is an example on how to get started:

'use strict';

var isEmail = require('is-email-valid-full');

var http = require('http');
var port = process.env.PORT || 1337;

http.createServer(function (req, res) {
    res.writeHead(200, { 'Content-Type': 'text/plain' });

    isEmail.setApikey('PUT_YOUR_API_KEY_HERE');

    var result = isEmail.isEmailValid('support@cloudmersive.com', function (output) {
        res.end(output.ValidAddress.toString());
    });

    
}).listen(port);
1.2.6

6 years ago

1.2.5

6 years ago

1.2.4

6 years ago

1.2.3

6 years ago

1.2.2

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago