首页 > php教程 > php手册 > pop3邮件收取一例

pop3邮件收取一例

WBOY
发布: 2016-06-13 10:31:05
原创
826 人浏览过

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
热门推荐
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板