作者 邓超

x

... ... @@ -254,6 +254,10 @@ class Body {
// $filename = MailFun::decodeMimeStr($filename[1]);
$filename = mb_decode_mimeheader($filename[1]);
}
// 附件
if(stripos($item,'Content-Disposition: attachment;')!==false){
$isfileattachment = 1;
}
// 删除不需要的tag属性,如果需要进进行解析
... ... @@ -270,6 +274,11 @@ class Body {
}
// 是文本还是附件
else if(strpos($data['type'],'text/') === 0 ){
// 这里还有可能出现附件
if($filename&&!empty($isfileattachment)){
$data = $this->parseFile($data,$filename);
}else{
// tag
$data['body'] = trim($this->body_remove_tag($data['body'],'Content-ID:'));
... ... @@ -310,6 +319,8 @@ class Body {
// $debody = null;
// }
// }
}
}
... ...