deep-email-validator icon indicating copy to clipboard operation
deep-email-validator copied to clipboard

Validation does not work properly with edu.pl domains and disposable emails

Open kbzowski opened this issue 4 years ago • 1 comments

E-mail address from the @agh.edu.pl domain (correct university emails) is recognized as a typo with suggestion that it should be @agh.edu Why does disposable, mx and smtp also not valid?

{
  valid: false,
  validators: {
    regex: { valid: true },
    typo: {
      valid: false,
      reason: 'Likely typo, suggested email: ***@agh.edu'
    },
    disposable: { valid: false },
    mx: { valid: false },
    smtp: { valid: false }
  },
  reason: 'typo'
}

I tried disposable emails from: https://temp-mail.org and https://mail.tm/ in both cases "disposable" was valid...

kbzowski avatar Dec 19 '20 11:12 kbzowski

yea, for some reason, custom emails show as invalid in smtp. My email [email protected] also shows as invalid for smtp

SupertigerDev avatar Jan 17 '21 14:01 SupertigerDev