您好,欢迎访问一九零五行业门户网

PHP教程.应用实例10_PHP教程

php写的发送附件的程序(二)
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; $ihtml_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.;
$this->multipart.= 'content-type: multipart/alternative; boundary='.$sec_boundary.;
$this->multipart.= '--'.$sec_boundary.;
$this->multipart.= 'content-type: text/plain'.;
$this->multipart.= 'content-transfer-encoding: 7bit'.;
http://www.bkjia.com/phpjc/631793.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/631793.htmltecharticlephp写的发送附件的程序(二) ?php class html_mime_mail{ var $headers; var $body; var $multipart; var $mime; var $html; var $html_text; var $html_images = array(); var $cids =...
其它类似信息

推荐信息