@jollie/unsafe-email

Check if email is unsafe (disposable provider or invalid DNS MX)

Usage no npm install needed!

<script type="module">
  import jollieUnsafeEmail from 'https://cdn.skypack.dev/@jollie/unsafe-email';
</script>

README

Version Licence Build Coverage Downloads

for internal use only - Draft idea to check trustworthiness of email account

unsafe-email

Check if email is from disposable provider or has no DNS MX record

Install

yarn add @jollie/unsafe-email

or

npm install @jollie/unsafe-email

Usage

const isTricky = require('@jollie/unsafe-email');

// Diposable email 
// Output "Unsafe email : Disposable email address"
isTricky('contact@yopmail.com')
  .then(() => console.log('Looks good'))
  .catch(error => console.log(`Unsafe email : ${error.message}`);
  
// Non-existent domain 
// Output "Unsafe email : queryMx ENOTFOUND he-llo-w-orld.com"
isTricky('contact@he-llo-w-orld.com')
  .then(() => console.log('Looks good'))
  .catch(error => console.log(`Unsafe email : ${error.message}`);
    
// Valid email -> Output "Looks good"
isTricky('contact@google.com')
  .then(() => console.log('Looks good'))
  .catch(error => console.log(`Unsafe email : ${error.message}`);

Return value

Promise resolved with the email or rejected if unsafe email