Email Verify/Email Hygiene

Status
Not open for further replies.
I am looking for the same I think, i have a 700k e-mail database and would like to clean it up without having to send emails first
 
we have develop our in house system with smtp handshake

add me for discussion

skype: ipowerhost2
 
Atomic Email Verifier (desktop software)
EmailListVerify.com
BulkEmailChecker.com
 
Okay. Thanks to everyone, I will try Atomic Email Verify
 
try www.algocheck.com, legit company, attractive price. passed successfully the beta and now works perfect.
Keep in mind :
1. service with incredible price (like $5=100k credits) => scam, they want to steal your database
2. using yourself a software (like atomic....), the major ISP and large company (gmail,yahoo,....) will block your IP or server IP after hundreded of email check. Or you have an army of IP, or use a SAAS program (algocheck,xverify....)

PM if you need more informations
 
Thanks for the information about atomic, I just purchase the software, I think I will use proxie with it so the yahoo and other ISP will not black list my server IP.
 
I am looking for the same I think, i have a 700k e-mail database and would like to clean it up without having to send emails first
I can give you Unlimited Verifying with little price......
it verifies the actual address existence....
 
My little advice : be warned that many companies or people in this forum will tell you they can verifiy your email database for very cheap.
To check an email, it costs money (pay server, an army of IPs...)
So their goal is only to STEAL you email database.
 
What do you acucally mean verify the email, you want to no what, the email is real ?

Or the email is active or being used or the email is live ?

What do you really need to no ?

Just intrested in your logic of why
 
You should always get users to verify there email by clicking a link in a first time message save all the hastle .
 
You can make the same code as the app for free

This will cheek if a users email is real from facebook .......
<?php
ini_set('display_errors','Off');
$account = 'enter email';

set_time_limit(0);
/*GET CONTENT BY FACEBOOK GRAPH*/
$search = json_decode(file_get_contents("https://graph.facebook.com/search?q={$account}&type=user"));

if($search->id)
{
echo "yes";
}
else
{
echo "no";
}
?>

Uss this refrence for checking the mx and dns of the email .
http://stackoverflow.com/questions/19261987/how-to-check-if-email-exist-online-using-php

Afther all put together your get same effect as attonic application.
 
Status
Not open for further replies.
This thread has been auto closed due to the forum's thread age policy. Read more.
Back
Top