当前位置:编程学习 > php >>

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

<?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);
    }
    }
    }
补充:Php教程,邮件处理 
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,