摘要:
<?php/*** 获得163邮箱通讯录列表 -- mail_163.class.php*/define("COOKIEJAR1", tempnam('\tmp', "c1_"));define("COOKIEJAR2", tempnam('\tmp', "c2_"));define('TIMEOUT', 10000);class mail_163 {/*** @desc: login in the 163 mail box* @param string $us 阅读全文
摘要:
<?php/*** 获得Gmail邮箱通讯录列表 -- mail_gmail.class.php*/class mail_gmail {function getAddressList($username, $password) {$login_url = "https://www.google.com/accounts/ClientLogin";$fields = array('Email' => $username,'Passwd' => $password,'service' => 'cp& 阅读全文
摘要:
<?php/*** 获得qq邮箱通讯录列表 -- mail_qq.class.php*/require_once 'phpQuery/phpQuery.php';define("USERAGENT", $_SERVER['HTTP_USER_AGENT']);define("COOKIEJAR", tempnam('\tmp', "c"));define("TIMEOUT", 10);class mail_qq {var $host = "" 阅读全文