📨 Gmail Checker
Cek status akun Gmail secara massal — live, not exist, atau unknown
Satu email per baris. Format yang didukung:
email@gmail.com | email@gmail.com:password | label|email@gmail.com
⚠️
Catatan: Google memblokir cek Gmail dari IP datacenter (Cloudflare). Untuk hasil akurat, masukkan URL API server kamu di bawah.
Cara setup →
Buat file gmail_check.php di server kamu:
header('Access-Control-Allow-Origin: *');
header('Content-Type: application/json');
$emails = json_decode(file_get_contents('php://input'),true)['emails'] ?? [];
$res = [];
foreach($emails as $email) {
$url = 'https://mail.google.com/mail/gxlu?email='.urlencode($email);
$h = get_headers($url, 1);
$loc = $h['Location'] ?? '';
$status = $loc ? 'live' : 'not_exist';
if(strpos($h[0],'404') !== false) $status = 'not_exist';
$res[] = ['email'=>$email,'status'=>$status];
}
echo json_encode($res);