最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > 建站教程 > php教程 >

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

时间:2014-06-09 16:40来源: 作者: 点击:
我想使用邮件接收类的朋友可能比较少,但是发送邮件的类使用的朋友比较多啊,下面我来分别给大家介绍PHP邮件接收与发送类实现程序详解,希望对大家所有帮助哦。 主要的改进如下: 1、新增

我想使用邮件接收类的朋友可能比较少,但是发送邮件的类使用的朋友比较多啊,下面我来分别给大家介绍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 = 1, $per_page = 25, $sort = null)  
  40.   { 
  41.        $limit = ($per_page * $page); 
  42.        $start = ($limit - $per_page) + 1; 
  43.        $start = ($start < 1) ? 1 : $start
  44.        $limit = (($limit - $start) != ($per_page-1)) ? ($start + ($per_page-1)) : $limit
  45.        $info = imap_check($this->marubox); 
  46.        $limit = ($info->Nmsgs < $limit) ? $info->Nmsgs : $limit
  47.  
  48.        if(true === is_array($sort))  
  49.        { 
  50.            $sorting = array
  51.                'direction' => array'asc' => 0, 'desc' => 1), 
  52.                'by'        => array('date' => SORTDATE, 'arrival' => SORTARRIVAL, 
  53.                                    'from' => SORTFROM, 'subject' => SORTSUBJECT, 'size' => SORTSIZE)); 
  54.            $by = (true === is_int($by = $sorting['by'][$sort[0]])) ? $by : $sorting['by']['date']; 
  55.            $direction = (true === is_int($direction = $sorting['direction'][$sort[1]])) ? $direction : $sorting['direction']['desc']; 
  56.            $sorted = imap_sort($this->marubox, $by$direction); 
  57.            $msgs = array_chunk($sorted$per_page); 
  58.            $msgs = $msgs[$page-1]; 
  59.        } 
  60.        else  
  61.        { 
  62.            $msgs = range($start$limit); //just to keep it consistent 
  63.        } 
  64.        $result = imap_fetch_overview($this->marubox, implode($msgs','), 0); 
  65.        if(false === is_array($result)) return false; 
  66.  
  67.        foreach ($result as $k => $r
  68.        { 
  69.          $result[$k]->subject = $this->_imap_utf8($r->subject); 
  70.          $result[$k]->from = $this->_imap_utf8($r->from); 
  71.          $result[$k]->to = $this->_imap_utf8($r->to); 
  72.    $result[$k]->body = $this->getBody($r->msgno); 
  73.        } 
  74.        //sorting! 
  75.        if(true === is_array($sorted))  
  76.        { 
  77.            $tmp_result = array(); 
  78.            foreach($result as $r
  79.            { 
  80.              $tmp_result[$r->msgno] = $r
  81.            } 
  82.  
  83.            $result = array(); 
  84.            foreach($msgs as $msgno)  
  85.            { 
  86.     $result[] = $tmp_result[$msgno]; 
  87.            } 
  88.        } 
  89.  
  90.        $return = array('res' => $result
  91.                        'start' => $start
  92.                        'limit' => $limit
  93.                        'sorting' => array('by' => $sort[0], 'direction' => $sort[1]), 
  94.                        'total' => imap_num_msg($this->marubox)); 
  95.        $return['pages'] = ceil($return['total'] / $per_page); 
  96.        return $return
  97.    } 
  98.  
  99.  function getHeaders($mid// Get Header info 
  100.  { 
  101.   if(!$this->marubox) 
  102.    return false; 
  103.   $mail_header=imap_header($this->marubox,$mid); 
  104.   $sender=$mail_header->from[0]; 
  105.   $sender_replyto=$mail_header->reply_to[0]; 
  106.   if(strtolower($sender->mailbox)!='mailer-daemon' && strtolower($sender->mailbox)!='postmaster'
  107.   { 
  108.    $mail_details=array
  109.      'from'=>strtolower($sender->mailbox).'@'.$sender->host, 
  110.      'fromName'=>$sender->personal, 
  111.      'toOth'=>strtolower($sender_replyto->mailbox).'@'.$sender_replyto->host, 
  112.      'toNameOth'=>$sender_replyto->personal, 
  113.      'subject'=>$mail_header->subject, 
  114.      'to'=>strtolower($mail_header->toaddress) 
  115.     ); 
  116.   } 
  117.   return $mail_details
  118.  } 
  119.  
  120.  function get_mime_type(&$structure//Get Mime type Internal Private Use 
  121.  {  
  122.   $primary_mime_type = array("TEXT""MULTIPART""MESSAGE""APPLICATION""AUDIO""IMAGE""VIDEO""OTHER");  
  123.    
  124.   if($structure->subtype) {  
  125.    return $primary_mime_type[(int) $structure->type] . '/' . $structure->subtype;  
  126.   }  
  127.   return "TEXT/PLAIN";  
  128.  }  
  129.  
  130.  function get_part($stream$msg_number$mime_type$structure = false, $part_number = false) //Get Part Of Message Internal Private Use 
  131.  {  
  132.   if(!$structure) {  
  133.    $structure = imap_fetchstructure($stream$msg_number);  
  134.   }  
  135.   if($structure) {  
  136.    if($mime_type == $this->get_mime_type($structure)) 
  137.    {  
  138.     if(!$part_number)  
  139.     {  
  140.      $part_number = "1";  
  141.     }  
  142.     $text = imap_fetchbody($stream$msg_number$part_number);  
  143.     if($structure->encoding == 3)  
  144.     {  
  145.      return imap_base64($text);  
  146.     }  
  147.     else if($structure->encoding == 4)  
  148.     {  
  149.      return imap_qprint($text);  
  150.     }  
  151.     else 
  152.     {  
  153.      return $text;  
  154.     }  
  155.    }  
  156.    if($structure->type == 1) /* multipart */  
  157.    {  
  158.     while(list($index$sub_structure) = each($structure->parts)) 
  159.     {  
  160.      if($part_number
  161.      {  
  162.       $prefix = $part_number . '.';  
  163.      }  
  164.      $data = $this->get_part($stream$msg_number$mime_type$sub_structure$prefix . ($index + 1));  
  165.      if($data
  166.      {  
  167.       return $data;  
  168.      }  
  169.     }  
  170.    }  
  171.   }  
  172.   return false;  
  173.  }  
  174.  
  175.  function getTotalMails() //Get Total Number off Unread Email In Mailbox 
  176.  { 
  177.   if(!$this->marubox) 
  178.    return false; 
  179.   $headers=imap_headers($this->marubox); 
  180.   return count($headers); 
  181.  } 
  182.  function GetAttach($mid,$path// Get Atteced File from Mail 
  183.  { 
  184.   if(!$this->marubox) 
  185.   { 
  186.    return false; 
  187.   } 
  188.   $struckture = imap_fetchstructure($this->marubox,$mid); 
  189.   $ar=""
  190.   if($struckture->parts) 
  191.         { 
  192.    foreach($struckture->parts as $key => $value
  193.    { 
  194.     $enc=$struckture->parts[$key]->encoding; 
  195.     if($struckture->parts[$key]->ifdparameters) 
  196.     { 
  197.      $name=$struckture->parts[$key]->dparameters[0]->value; 
  198.      $message = imap_fetchbody($this->marubox,$mid,$key+1); 
  199.      switch ($enc
  200.      { 
  201.       case 0: 
  202.        $message = imap_8bit($message); 
  203.        break
  204.       case 1: 
  205.        $message = imap_8bit ($message); 
  206.        break
  207.       case 2: 
  208.        $message = imap_binary ($message); 
  209.        break
  210.       case 3: 
  211.        $message = imap_base64 ($message);  
  212.        break
  213.       case 4: 
  214.        $message = quoted_printable_decode($message); 
  215.        break
  216.       case 5: 
  217.        $message = $message
  218.        break
  219.      } 
  220.      $fp=fopen($path.$name,"w"); 
  221.      fwrite($fp,$message); 
  222.      fclose($fp); 
  223.      $ar=$ar.$name.","
  224.     } 
  225.     // Support for embedded attachments starts here 
  226.     if($struckture->parts[$key]->parts) 
  227.     { 
  228.      foreach($struckture->parts[$key]->parts as $keyb => $valueb
  229.      { 
  230.       $enc=$struckture->parts[$key]->parts[$keyb]->encoding; 
  231.       if($struckture->parts[$key]->parts[$keyb]->ifdparameters) 
  232.       { 
  233.        $name=$struckture->parts[$key]->parts[$keyb]->dparameters[0]->value; 
  234.        $partnro = ($key+1).".".($keyb+1); 
  235.        $message = imap_fetchbody($this->marubox,$mid,$partnro); 
  236.        switch ($enc
  237.        { 
  238.         case 0: 
  239.            $message = imap_8bit($message); 
  240.          break
  241.         case 1: 
  242.            $message = imap_8bit ($message); 
  243.          break
  244.         case 2: 
  245.            $message = imap_binary ($message); 
  246.          break
  247.         case 3: 
  248.            $message = imap_base64 ($message); 
  249.          break
  250.         case 4: 
  251.            $message = quoted_printable_decode($message); 
  252.          break
  253.         case 5: 
  254.            $message = $message
  255.          break
  256.        } 
  257.        $fp=fopen($path.$name,"w"); 
  258.        fwrite($fp,$message); 
  259.        fclose($fp); 
  260.        $ar=$ar.$name.","
  261.       } 
  262.      } 
  263.     }     
  264.    } 
  265.   } 
  266.   $ar=substr($ar,0,(strlen($ar)-1)); 
  267.   return $ar
  268.  } 
  269.  
  270.  function getBody($mid// Get Message Body 
  271.  { 
  272.   if(!$this->marubox) 
  273.   { 
  274.    return false; 
  275.   } 
  276.   $body = $this->get_part($this->marubox, $mid"TEXT/HTML"); 
  277.   if ($body == ""
  278.   { 
  279.    $body = $this->get_part($this->marubox, $mid"TEXT/PLAIN"); 
  280.   } 
  281.   if ($body == "")  
  282.   { 
  283.    return ""
  284.   } 
  285.   return $this->_iconv_utf8($body); 
  286.  } 
  287.  
  288.  function deleteMails($mid// Delete That Mail 
  289.  { 
  290.   if(!$this->marubox) 
  291.    return false; 
  292.  
  293.   imap_delete($this->marubox,$mid); 
  294.  } 
  295.  
  296.  function close_mailbox() //Close Mail Box 
  297.  { 
  298.   if(!$this->marubox) 
  299.    return false; 
  300.   imap_close($this->marubox,CL_EXPUNGE); 
  301.  } 
  302.  
  303.  function _imap_utf8($text
  304.  { 
  305.   if(preg_match('/=?([a-zA-z0-9-]+)?(.*)?=/i'$text$match)) 
  306.   { 
  307.    $text = imap_utf8($text); 
  308.    if(strtolower(substr($match[1], 0, 2)) == 'gb'
  309.    { 
  310.     $text = iconv('gbk''utf-8'$text); 
  311.    } 
  312.    return $text
  313.   } 
  314.   return $this->_iconv_utf8($text); 
  315.  } 
  316.  
  317.  function _iconv_utf8($text
  318.  { 
  319.   $s1 = iconv('gbk''utf-8'$text); 
  320.   $s0 = iconv('utf-8''gbk'$s1); 
  321.   if($s0 == $text
  322.   { 
  323.    return $s1
  324.   } 
  325.   else 
  326.   { 
  327.    return $text
  328.   } 
  329.  } 

下面是一个php邮件发送的类的一个函数,代码如下:

  1. function sendmail($to$from$subject = ""$body = ""$mailtype$cc = ""$bcc = ""$additional_headers = ""
  2.     { 
  3.         $mail_from = $this->get_address($this->strip_comment($from)); 
  4.         $body = ereg_replace("(^|(rn))(.)""1.3"$body); 
  5.         $header = "MIME-Version:1.0rn"
  6.         if($mailtype=="HTML"){ 
  7.             $header .= "Content-Type:text/htmlrn"
  8.         } 
  9.         $header .= "To: ".$to."rn"
  10.         if ($cc != "") { 
  11.             $header .= "Cc: ".$cc."rn"
  12.         } 
  13.         $header .= "From: 报名邮件.<".$from.">rn"
  14.         $header .= "Subject: ".$subject."rn"
  15.         $header .= $additional_headers
  16.         $header .= "Date: ".date("r")."rn"
  17.         $header .= "X-Mailer:By Redhat (PHP/".phpversion().")rn"
  18.   $utfheader=iconv("UTF-8","GB2312",$header); 
  19.         list($msec$sec) = explode(" ", microtime()); 
  20.         $header .= "Message-ID: <".date("YmdHis"$sec).".".($msec*1000000).".".$mail_from.">rn"
  21.         $TO = explode(","$this->strip_comment($to)); 
  22.         if ($cc != "") { 
  23.             $TO = array_merge($TOexplode(","$this->strip_comment($cc))); 
  24.         } 
  25.         if ($bcc != "") { 
  26.             $TO = array_merge($TOexplode(","$this->strip_comment($bcc))); 
  27.         } 
  28.         $sent = TRUE; 
  29.         foreach ($TO as $rcpt_to) { 
  30.             $rcpt_to = $this->get_address($rcpt_to); 
  31.             if (!$this->smtp_sockopen($rcpt_to)) { 
  32.                 $this->log_write("Error: Cannot send email to ".$rcpt_to."n"); 
  33.                 $sent = FALSE; 
  34.                 continue
  35.             } 
  36.             if ($this->smtp_send($this->host_name, $mail_from$rcpt_to$utfheader$body)) { 
  37.                 $this->log_write("E-mail has been sent to <".$rcpt_to.">n"); 
  38.             } else { 
  39.                 $this->log_write("Error: Cannot send email to <".$rcpt_to.">n"); 
  40.                 $sent = FALSE; 
  41.             } 
  42.             fclose($this->sock); 
  43.             $this->log_write("Disconnected from remote hostn"); 
  44.         } 
  45.         return $sent
  46.     } 

我们如何调用这个类呢?示例代码如下:

  1. include("sendmail.php");//发送邮件类 
  2.  ####################--发邮件--#################### 
  3.  $smtpserver  =  "smtp.126.com";//SMTP服务器 
  4.  $smtpserverport = 25;//SMTP服务器端口 
  5.  $smtpusermail  =  "test@126.com";//SMTP服务器的用户邮箱 
  6.  $smtpuser   =  "test";//SMTP服务器的用户帐号 
  7.  $smtppass   =  "123456";//SMTP服务器的用户密码 
  8.  $smtpemailto  =  "dianzhong@126.com";//发送给谁 
  9.  $mailsubject  =  $username.'报名!';//邮件主题 
  10.  $mailtime  = date("Y-m-d H:i:s"); 
  11.  $mailbody   =  $content;//邮件内容 
  12.  $utfmailbody = iconv("UTF-8","GB2312",$mailbody);//转换邮件编码 
  13.  $mailtype   =  "HTML";//邮件格式(HTML/TXT),TXT为文本邮件 
在这里需要一个smtp服务器,我们可以注册一个126的邮箱, 在上面的代码中,修改成你自己注册的邮箱地址和用户名、密码即可。 (责任编辑:admin)
------分隔线----------------------------
栏目列表
推荐内容