当前位置: 首页 > 图文教程 > 网络编程 > PHP > php写的发送附件的程序(二)

PHP
让我们来编写一些PHP实用的脚本
七种缓存使用武器 为网站应用和访问加速
动态网页PHP中引用&的使用注意事项
在PHP中全面阻止SQL注入式攻击
PHP自带可以代替echo调试的unit函数
小结:PHP动态网页程序优化及高效提速问题
php对特殊语句查询结果进行数组排序
实例:用PHP技术解决网站URL格式过长的问题
小结:PHP动态网页程序两个有用的小技巧
动态网页中直接不让访问PHP程序文件
网页实例:详细介绍用PHP来编写网页记数器
菜鸟学习:动态网页PHP基础学习笔记
利用Apache实现禁止图片盗链
PHP编程中常用的三则技巧
PHP制作的网站意见在线反馈表
大型Web需求解决方案 PHP定位突出
PHP实例:精确到每一秒钟的在线人数显示代码
实用:动态网页制作技术PHP的十个应用技巧
常见php页面漏洞分析及相关问题解决
PHP和MYSQL制作动态网站开发经验之谈

PHP 中的 php写的发送附件的程序(二)


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 24 ::
收藏到网摘: n/a

      
  
   来源:Richard Heyes
  
   <?php
  class html_mime_mail{
  
  var $headers;
  var $body;
  var $multipart;
  var $mime;
  var $html;
  var $html_text;
  var $html_images = array();
  var $cids = array();
  var $do_html;
  var $parts = array();
  
  /***************************************
  ** Constructor function. Sets the headers
  ** if supplied.
  ***************************************/
  function html_mime_mail($headers = ''){
  $this->headers = $headers;
  }
  
  /***************************************
  ** Adds a html part to the mail.
  ** Also replaces image names with
  ** content-id's.
  ***************************************/
  function add_html($html, $text){
  $this->do_html = 1;
  $this->html = $html;
  $this->html_text = $text;
  if(is_array($this->html_images) AND count($this->html_images) > 0){
  for($i=0; $i<count($this->html_images); $i++){
  $this->html = ereg_replace($this->html_images[$i]['name'], 'cid:'.$this->html_images[$i]['cid'], $this->html);
  }
  }
  }
  
  /***************************************
  ** Builds html part of email.
  ***************************************/
  function build_html($orig_boundary){
  $sec_boundary = '=_'.md5(uniqid(time()));
  $thr_boundary = '=_'.md5(uniqid(time()));
  
  if(!is_array($this->html_images)){
  $this->multipart.= '--'.$orig_boundary."\r\n";
  $this->multipart.= 'Content-Type: multipart/alternative; boundary="'.$sec_boundary."\"\r\n\r\n\r\n";
  
  $this->multipart.= '--'.$sec_boundary."\r\n";
  $this->multipart.= 'Content-Type: text/plain'."\r\n";
  $this->multipart.= 'Content-Transfer-Encoding: 7bit'."\r\n\r\n";
  $this->multipart.= $this->html_text."\r\n\r\n";
  
  $this->multipart.= '--'.$sec_boundary."\r\n";
  $this->multipart.= 'Content-Type: text/html'."\r\n";
  $this->multipart.= 'Content-Transfer-Encoding: 7bit'."\r\n\r\n";
  $this->multipart.= $this->html."\r\n\r\n";
  $this->multipart.= '--'.$sec_boundary."--\r\n\r\n";
  }else{
  $this->multipart.= '--'.$orig_boundary."\r\n";
  $this->multipart.= 'Content-Type: multipart/related; boundary="'.$sec_boundary."\"\r\n\r\n\r\n";
  
  $this->multipart.= '--'.$sec_boundary."\r\n";
  $this->multipart.= 'Content-Type: multipart/alternative; boundary="'.$thr_boundary."\"\r\n\r\n\r\n";
  
  $this->multipart.= '--'.$thr_boundary."\r\n";
  $this->multipart.= 'Content-Type: text/plain'."\r\n";
  $this->multipart.= 'Content-Transfer-Encoding: 7bit'."\r\n\r\n";
  $this->multipart.= $this->html_text."\r\n\r\n";
  
  $this->multipart.= '--'.$thr_boundary."\r\n";
  $this->multipart.= 'Content-Type: text/html'."\r\n";
  $this->multipart.= 'Content-Transfer-Encoding: 7bit'."\r\n\r\n";
  $this->multipart.= $this->html."\r\n\r\n";
  $this->multipart.= '--'.$thr_boundary."--\r\n\r\n";
  
  for($i=0; $i<count($this->html_images); $i++){
  $this->multipart.= '--'.$sec_boundary."\r\n";
  $this->build_html_image($i);
  }
  
  $this->multipart.= "--