node module to detect temporary email addresses known for spam
yarn add tempmail-detect
import { isTempMail } from "tempmail-detect";
console.log(isTempMail("spam@host1s.com"));
// true
console.log(isTempMail("good@email.com"));
// false
Simple to use, 0 runtime dependency check for temporary mail addresses
Find a list of the used temp mail services in ./services.txt
Find a list of the used temp mail domains in ./domains.txt
Just extend the mail domain list in ./domains.txt
yarn
yarn build