如何使用php imap获取未存储在我们数据库中的电子邮件

时间:2017-02-16 05:49:02

标签: php imap php-imap

我正在使用vtiger CRM模块,使用不同应用条件的php imap从邮件服务器获取电子邮件。

$hostname = '{imap.gmail.com:993/ssl/novalidate-cert}';
$username = 'myemail@gmail.com';
$password = 'mypswd';

$inbox = imap_open($hostname,$username,$password) or die('Cannot connect to Gmail: ' . imap_last_error());  
$emails = imap_search($inbox,'FROM from@gmail.com');

if($emails) {

    $output = '';

    rsort($emails);

    foreach($emails as $email_number) {

        $overview = imap_fetch_overview($inbox,$email_number,0);
        $message = imap_fetchbody($inbox,$email_number,2);
        $message = trim(quoted_printable_decode($message));
        $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="date">on '.$overview[0]->date.'</span>';
        $output.= '</div>';
        $output.= '<div class="body">'.$message.'</div>';
        echo $output;die;
    }

    echo $output;
} 

这个完整的代码工作正常,但是只想获取那些尚未存储到我的数据库中的新电子邮件,这样一旦电子邮件存储在我的数据库中,就不应该再存储它。

1 个答案:

答案 0 :(得分:0)

问题已解决,我使用日期参数进行过滤,以便获取最少的电子邮件,并将message_id存储到我的数据库中,并使用此message_id,如果已存在或不存在于我的数据库中,则会设置一个条件。