php 基於imap擷取郵件執行個體代碼

來源:互聯網
上載者:User
這篇文章主要介紹了PHP基於imap擷取郵件的方法,執行個體形式詳細講述了imap擷取郵件的具體步驟,並詳細講述了Windows下和Linux下安裝imap的方法,需要的朋友可以參考下

本文執行個體講述了PHP基於imap擷取郵件的方法。分享給大家供大家參考。具體實現方法如下:

imap是一款郵件互動訪問的協議了,下面是執行個體主要利用php imap模組來快速擷取郵件,列出所有目錄,代碼如下:

代碼如下:

$host = '{imap.mail.yahoo.com:993/ssl}';$user = 'user@yahoo.com';$pass = 'password';$inbox = imap_open($host, $user, $pass);$mailboxes = imap_list($inbox, $host, '*');$mailboxes = str_replace($host, '', $mailboxes);print_r($mailboxes);//結果:Array(    [0] => Bulk Mail    [1] => Draft    [2] => Inbox    [3] => Sent    [4] => Trash)

重新開啟指定的目錄:

代碼如下:

imap_reopen($inbox, $host.'Bulk Mail');$emails = imap_search($inbox,'ALL');print_r($emails);

補充:

1. windows安裝imap

注意在windows中我們需要開啟php.ini中的一個imap模板了,在php中找到php_imap.dll擴充然後開啟,同時如果你看extensions沒有關php_imap.dll需要複製一個過去.

2. linux中安裝imap

最後完整的編譯 imap 模組參數如下:

代碼如下:

./configure --with-php-config=/usr/local/webserver/php/bin/php-config --with-kerberos=/usr --with-imap-ssl=/usrmakemake install

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.