网站地图    收藏   

主页 > php专栏 > php应用 >

PHP邮件接收与发送类实现程序详解 - php高级应用

来源:自学PHP网    时间:2014-11-27 22:16 作者: 阅读:

[导读] 我想使用邮件接收类的朋友可能比较少,但是发送邮件的类使用的朋友比较多啊,下面我来分别给大家介绍PHP邮件接收与发送类实现程序详解,希望对...

PHP邮件接收与发送类实现程序详解

我想使用邮件接收类的朋友可能比较少,但是发送邮件的类使用的朋友比较多啊,下面我来分别给大家介绍PHP邮件接收与发送类实现程序详解,希望对大家所有帮助哦。

主要的改进如下:

1、新增了listMessages方法,用于列表邮件列表,且带有分页功能,更加方便调用:

  1. /** 
  2.  * listMessages - 获取邮件列表 
  3.  * @param $page - 第几页 
  4.  * @param $per_page - 每页显示多少封邮件 
  5.  * @param $sort - 邮件排序,如:array('by' => 'date', 'direction' => 'desc') 
  6.  * */ 
  7. function listMessages($page = 1, $per_page = 25, $sort = null){} 

2、新增了两个编码转换的方法,主要用于对邮件的相关信息进行编码转换,调用方法如下:

  1. include("receivemail.class.php"); 
  2. $obj = receiveMail('abc@abc.com','xxxxxx','abc@abc.com','pop.abc.com','pop3','110', false); 
  3. $obj->connect(); 
  4. $maillist = $obj->listMessages(); 
  5. print_r($maillist); 
  6. 运行结果大致如下: 
  7. Array 
  8.     [res] => Array 
  9.         ( 
  10.          [0] => stdClass Object 
  11.           ( 
  12.            [subject] => 解决PHP邮件接收类的乱码问题 
  13.            [from] => xxx <xxx@phper.org.cn> 
  14.            [to] => abc <abc@abc.com> 
  15.            [date] => Mon, 28 Jan 2013 14:23:06 +0800 (CST) 
  16.            [message_id] => <2afc51061915f95-00004.Richmail.00037000523146269922@xxx.com> 
  17.                     [size] => 42259 
  18.                     [uid] => 1 
  19.                     [msgno] => 1 
  20.                     [recent] => 1 
  21.                     [flagged] => 0 
  22.                     [answered] => 0 
  23.                     [deleted] => 0 
  24.                     [seen] => 0 
  25.                     [draft] => 0 
  26.                     [body] => 邮件内容 
  27.           ) 
  28.         ) 
  29.  [start] => 1 
  30.     [limit] => 25 
  31.     [sorting] => Array 
  32.         ( 
  33.             [by] =>  
  34.             [direction] =>  
  35.         ) 
  36.     [total] => 47 
  37.     [pages] => 2 

receivemail.class.php类文件,代码如下:

  1. <?php 
  2. class receiveMail 
  3.  var $server=''
  4.  var $username=''
  5.  var $password=''
  6.  
  7.  var $marubox='';      
  8.  
  9.  var $email='';    
  10.  
  11.  function receiveMail($username,$password,$EmailAddress,$mailserver='localhost',$servertype='pop',$port='110',$ssl = false) //Constructure 
  12.  { 
  13.   if($servertype=='imap'
  14.   { 
  15.    if($port==''$port='143';  
  16.    $strConnect='{'.$mailserver.':'.$port'}INBOX';  
  17.   } 
  18.   else 
  19.   { 
  20.    $strConnect='{'.$mailserver.':'.$port'/pop3'.($ssl ? "/ssl" : "").'}INBOX';  
  21.   } 
  22.   $this->server   = $strConnect
  23.   $this->username   = $username
  24.   $this->password   = $password
  25.   $this->email   = $EmailAddress
  26.  } 
  27.  
  28.  function connect() //Connect To the Mail Box 
  29.  { 
  30.   $this->marubox=@imap_open($this->server,$this->username,$this->password); 
  31.    
  32.   if(!$this->marubox) 
  33.   { 
  34.    echo "Error: Connecting to mail server"
  35.    exit
  36.   } 
  37.  } 
  38.  
  39.  function listMessages($page

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论