mail-discover
v0.1.2
Published
A simple package to find any imap, pop3 and smtp servers related to an email address
Downloads
5
Readme
Mail-Discover
This is a simple NPM package to identify and lookup any imap, pop3, smtp or any other mail related servers related to an email address
Implementations:
Current
WIP
Example:
import mailDiscover from "mail-discover";
const fetch = async () => {
const servers = await mailDiscover("[email protected]");
console.log(servers);
};
fetch();
Output:
[
{
"port": 993,
"security": "TLS",
"server": "imap.gmail.com",
"type": "imap"
},
{
"port": 465,
"security": "TLS",
"server": "smtp.gmail.com",
"type": "smtp"
}
]