Im looking for a list of the major services that are used by like email service providers to blacklist domains and dump emails with those domains in Spam.
Of course there is WOT that is used by Facebook,
Who knows what the main other blacklists are, either for email, IPs, or domains.
Cheers
Tijn
I've attached the PHP code I use to check if an email's domain is listed on a DNSBL (blacklisted). Hope this helps.
Sean
Actually the code checks against the IP, so to get the IP from a domain name you use something like:
$ip = gethostbyname($domainName);
then call the dnsbl function 'checkBlackList' which returns a list of places where the ip is blacklisted.
Sean
awesome! great stuff. there must be like 25 services in there