Skip to content

Patreo/EmailValidator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

EmailValidator

Email Validator Service in PHP. Can be used to validate if email exists on mail server. Just not validate only syntax but all email infrastructure.

Usage

Must be run like a service. Calling address like this http://domain.com/validate.php?q=name@domain.com next you can get result using an ajax call in jQuery:

$.ajax({
  url: "http://domain.com/validate.php",
  data: { q: "name@domain.com"},
  dataType: "json"
}).done(function(data) {
   alert(data.is_valid);
});

Releases

No releases published

Packages

No packages published

Languages