(首次使用PHP编程。有一些帮助。需要更多。)
目标:
从我的Gmail帐户中提取给定电子邮件地址的lastContactDate。希望回答这个问题,“我最后一次联系[人]是什么时候”
到目前为止我做了什么:
我不能做的事情:
注意:
研究:
到目前为止使用的代码:
/* connect to gmail */
$gmailhostname = '{imap.gmail.com:993/imap/ssl}';
$gmailusername = "___@gmail.com";
$gmailpassword = "___";
/* try to connect */
$conn = imap_open($gmailhostname,$gmailusername,$gmailpassword) or die('Cannot connect to Gmail: ' . imap_last_error());
$query = mysql_query("SELECT * FROM users");
while($row = mysql_fetch_array($query))
{
$findemail = $row["email"];
/* grab emails */
$emails = imap_search($conn,'FROM "'.$findemail.'"');
/* if emails are returned, cycle through each... */
if ($emails) {
/* begin output var */
$output = '';
/* put the newest emails on top */
rsort($emails);
/* for 5 emails... */
$emails = array_slice($emails,0,1);
foreach ($emails as $email_number) {
/* get information specific to this email */
$overview = imap_fetch_overview($conn,$email_number,0);
$message = imap_fetchbody($conn,$email_number,2);
/* output the email header information */
/*
$output.= '<div class="toggler '.($overview[0]->seen ? 'read' : 'unread').'">';
$output.= '<span class="subject">'.$overview[0]->subject.'</span> ';
$output.= '<span class="from">'.$overview[0]->from.'</span>';
*/
$output.= '<span class="from">'.$overview[0]->from.'</span> ';
$output.= '<span class="date">on '.$overview[0]->date.'</span> <br /><br />';
mysql_query("UPDATE users SET lastContactDate = '".$overview[0]->date."' WHERE email = '".$findemail."'") or die(mysql_error());
/* output the email body */
/* $output.= '<div class="body">'.$message.'</div>'; */
}
echo $output;
}
}
/* close the connection */
imap_close($conn);
?>
答案 0 :(得分:12)
问题解决了!
这是解决方案。使用上面的原始代码,我们只修改了程序搜索的位置。它不是INBOX,而是:
/* connect to gmail */
$gmailhostname = '{imap.gmail.com:993/imap/ssl}[Gmail]/All Mail';
具体地
[Gmail]/All Mail
在此处找到语法:http://php.net/manual/en/function.imap-delete.php
但如果没有Ben的史诗解决方案,那就不可能了。在很大程度上这一点:
//You can find out what folders are available with this command:
print_r(imap_list($conn, $gmailhostname, '*'));
print_r按名称列出了我帐户中的所有文件夹。我发现“All Mail”,在我的情况下 - 22,000+,在php.net上找到了一段带有语法的示例代码,插入了中提琴!
感谢mmmshuddup用于清理我的代码,特别是Ben用于大量的研究工作和领先的解决方案。
这很有趣。
答案 1 :(得分:6)
我从未使用过imap函数,但是通过手册查看,问题可能是你的imap_search函数返回的是简单的消息序列号而不是UID,这是我猜的,唯一的消息ID?
也许有人可以帮助你更好我只是想尝试一些事情。
尝试将imap_search函数更改为:
$emails = imap_search($conn,'FROM "'.$findemail.'"', SE_UID);
你的fetch功能就是这些:
$overview = imap_fetch_overview($conn,$email_number, FT_UID);
$message = imap_fetchbody($conn,$email_number,2, FT_UID);
如果这不起作用,你可以尝试的另一件事就是将fetch_overview设置为其中一个:
$overview = imap_fetch_overview($conn,"1:{$email_number}",0);
// Or Maybe:
$overview = imap_fetch_overview($conn,"{$email_number}:{$email_number}",0);
它告诉它从1获取消息,无论是我认为的$ email_number,还是一系列消息ID而不是唯一消息ID。但不确定。
我认为rsort()不会使用UID方法,因此如果使用该方法,则必须找到不同的方法对它们进行排序。您可能必须获取所有匹配的电子邮件标题的数组,并按此方式排序。
抱歉,我没有更多的帮助,以前从未使用过imap,但祝你好运!
编辑:手册页对此非常奇怪,但看起来imap_sort函数也有搜索条件,所以理论上你可以这样做:
$emails = imap_sort($conn, SORTARRIVAL, 0, SE_UID, 'FROM "'.$findemail.'"');
// and then grab the first one:
$emails = array_slice($emails,0,1);
//And then further down use these two with the UID param
$overview = imap_fetch_overview($conn,$email_number, FT_UID);
$message = imap_fetchbody($conn,$email_number,2, FT_UID);
如果您仍未收到存档中的消息,可以查看以下答案:
PHP imap_search not detecting all messages in gmail inbox
再次编辑
哇,这比我想的更多......这已成为有史以来最长的答案......根据您的要求,如果您只需要在存档文件夹中查找邮件,我相信您需要重新打开连接并在搜索之前连接到该特定文件夹,例如:
imap_reopen($conn, "{$gmailhostname}Archive") or die(implode(", ", imap_errors()));
//You can find out what folders are available with this command:
print_r(imap_list($conn, $gmailhostname, '*'));
如果您需要搜索所有文件夹...这比我看到的更难: 您需要遍历要搜索的每个电子邮件收件箱,或者找到使用此方法的方法:
http://code.google.com/apis/gmail/imap/#x-gm-raw
我认为你需要一个自定义的imap处理程序,或者ZEND。 Custom IMAP command in php
这正式是我能找到的所有信息。