1.0.4 • Published 8 years ago

email-mx-validator v1.0.4

Weekly downloads
16
License
MIT
Repository
-
Last release
8 years ago

Email-mx-validator

A email validation package for NodeJS

Installation

npm install -g email-mx-validator

Usage

var ev = require('email-mx-validator');

ev.validEmail('mnicolas80@gmail.com', function(valid) {
  // returns true, because the syntax of the given email address is correct and the email address has at least one DNS MX record.
});