从php下载gmail附件

时间:2010-08-03 09:59:45

标签: php gmail imap

你能告诉我,如何使用php从gmail帐户下载附件? 感谢

3 个答案:

答案 0 :(得分:3)

你可以使用php pop或imap客户端获取邮件并从中提取附件

答案 1 :(得分:3)

正如其他回答者所说,建议使用IMAP解决方案,可以在http://davidwalsh.name/gmail-php-imap找到。确保检查防火墙,并在PHP安装中启用OpenSSL和IMAP。

http://www.electrictoolbox.com/extract-attachments-email-php-imap/提供了有关如何使用imap_fetchstructure分析每封电子邮件结构的优秀代码参考。在每个消息的结构中都有附件。用户在http://www.php.net/manual/en/function.imap-fetchstructure.php提供的备注特别有用(文档也是如此)。

基本上,你必须

  • 遍历结构部分
  • 确定哪些是附件
  • 适当地解码。

不同的电子邮件客户端的结构会略有不同,但只需稍加努力就不会太难。然后,您可以选择处理数据。

答案 2 :(得分:1)

IMAP解决方案

/* connect to gmail */
$hostname = '{imap.gmail.com:993/imap/ssl}INBOX';
$username = 'davidwalshblog@gmail.com';
$password = 'davidwalsh';

/* try to connect */
$inbox = imap_open($hostname,$username,$password) or die('Cannot connect to Gmail: ' . imap_last_error());

/* grab emails */
$emails = imap_search($inbox,'ALL');

/* if emails are returned, cycle through each... */
if($emails) {

    /* begin output var */
    $output = '';

    /* put the newest emails on top */
    rsort($emails);

    /* for every email... */
    foreach($emails as $email_number) {

        /* get information specific to this email */
        $overview = imap_fetch_overview($inbox,$email_number,0);
        $message = imap_fetchbody($inbox,$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="date">on '.$overview[0]->date.'</span>';
        $output.= '</div>';

        /* output the email body */
        $output.= '<div class="body">'.$message.'</div>';
    }

    echo $output;
} 

/* close the connection */
imap_close($inbox);

您必须添加附件控件,然后才能阅读此内容,因为这是源代码http://davidwalsh.name/gmail-php-imap