You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, thanks for the package. I have an issue when I want to check an email adress with the package. I use the stand alone email-verify [email protected] version and the followng sample code:
const verifier = require('email-verify');
const infoCodes = verifier.infoCodes;
verifier.verify("[email protected]", (err, info) => {
if(err) {
console.log(err);
}
else{
console.log( "Success (T/F): " + info.success);
console.log( "Info: " + info.info );
//Info object returns a code which representing a state of validation:
//Connected to SMTP server and finished email verification
console.log(info.code === infoCodes.finishedVerification);
//Domain not found
console.log(info.code === infoCodes.domainNotFound);
//Email is not valid
console.log(info.code === infoCodes.invalidEmailStructure);
//No MX record in domain name
console.log(info.code === infoCodes.noMxRecords);
//SMTP connection timeout
console.log(info.code === infoCodes.SMTPConnectionTimeout);
//SMTP connection error
console.log(info.code === infoCodes.SMTPConnectionError)
}
})
Hi, thanks for the package. I have an issue when I want to check an email adress with the package. I use the stand alone
email-verify [email protected]
version and the followng sample code:I tested this sample code on my laptop and the website repI.it (https://repl.it/languages/nodejs) but I always have this error:
OperationalError: connect ETIMEDOUT 104.47.1.36:25 error at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1141:16) { errno: 'ETIMEDOUT', code: 'ETIMEDOUT', syscall: 'connect', address: '104.47.2.36', port: 25 }
why I keep getting this error and there is a way to resolve it?
I use nodeJS 12.18.2 and email-verify 0.2.1 on Ubuntu 18.04 and my network connection is Fiber To The Last Amplifier.
The text was updated successfully, but these errors were encountered: