pop3邮件收取一例

WBOY
リリース: 2016-06-13 10:31:05
オリジナル
787 人が閲覧しました

test_pop3.php(做为现在的主流开发语言)



Test for Manuel Lemoss php<font class="reblank">(做为现在的主流开发语言)</font> POP3 class



require("pop3.php(做为现在的主流开发语言)");

$user="user";
$password="passwd";
$apop=0;
$pop3_connection=new pop3_class;
$pop3_connection->hostname="mail.xiaocui.com";
if(($error=$pop3_connection->Open())=="")
{
   echo "
Connected to the POP3 server "$pop3_connection->hostname".
ログイン後にコピー
";
   if(($error=$pop3_connection->Login($user,$password,$apop))=="")
   {
      echo "
User "$user" logged in.
ログイン後にコピー
";
      if(($error=$pop3_connection->Statistics(&$messages,&$size))=="")
      {
         echo "
There are <b>$messages</b> messages in the mail box with a total of <b>$size</b> bytes.
ログイン後にコピー
";
         $result=$pop3_connection->ListMessages("",0);
         if(GetType($result)=="array")
         {
            for(Reset($result),$message=0;$message               echo "
Message ",Key($result)," - ",$result[Key($result)]," bytes.
ログイン後にコピー
";
             if($messages>0)
            {
                if(($error=$pop3_connection->RetrieveMessage(1,&$headers,&$body,-1))=="")
                {
                  echo "
Message 1:
---Message headers starts below---
ログイン後にコピー
";
                  for($line=0;$line                     echo "
",HtmlSpecialChars($headers[$line]),"
ログイン後にコピー
";
                  echo "
---Message headers ends above---
---Message body starts below---
ログイン後にコピー
";
                  for($line=0;$line                     echo "
",HtmlSpecialChars($body[$line]),"
ログイン後にコピー
";
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のおすすめ
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!