23

第一次用 PHP 编程。有一些帮助。需要更多。

目标:

从我的 gmail 帐户的给定电子邮件地址中提取 lastContactDate。希望回答这个问题,“我最后一次联系 [Person] 是什么时候”

到目前为止我所做的:

  • 使用 imap 连接到 gmail(仅限收件箱)
  • 抓到日期和时间
  • 打印人名和时间戳。

我不能做的:

  • 搜索已归档的 lastContactDate 电子邮件(我是收件箱=0 的人)

笔记:

  • 代码很粗糙,但很实用。php 确实应该分开到不同的页面上,但这是第一次尝试。提前感谢您的帮助!
  • 喜欢编程,顺便说一句。在过去的两天里,我不止一次跳了一点@edw519 舞。

研究:

到目前为止使用的代码:

    /* 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);
?>
4

2 回答 2

12

问题解决了!

这是解决方案。使用上面的原始代码,我们只修改了程序搜索的位置。而不是收件箱,它是:

    /* 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 按名称列出了我帐户中的所有文件夹。我们发现“所有邮件”,在我的例子中 - 22,000+,在 php.net 上找到了一段带有语法的示例代码,将其插入并中提琴!

感谢 mmmshuddup 清理我的代码,特别感谢 Ben 的巨大研究工作和领先的解决方案。

这很有趣。

于 2011-11-18T06:19:00.753 回答
6

我从未使用过 imap 函数,但查看手册,问题可能是您的 imap_search 函数返回简单的消息序列号而不是 UID,我猜这是唯一的消息 ID?

也许有人可以更好地帮助你我只是尝试一些事情来尝试。

尝试将您的 imap_search 函数更改为:

   $emails = imap_search($conn,'FROM "'.$findemail.'"', SE_UID);

以及您对这些的获取功能:

  $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 未检测到 gmail 收件箱中的所有邮件

再次编辑

哇,这真的比我想象的要多……这变成了有史以来最长的答案……

根据您的要求,如果您只需要在存档文件夹中查找邮件,我相信您需要在搜索之前重新打开连接并连接到该特定文件夹,例如:

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。 php中的自定义IMAP命令

这就是我能找到的所有信息。

于 2011-11-17T23:20:42.913 回答