作者 邓超

x

@@ -404,10 +404,21 @@ class Body { @@ -404,10 +404,21 @@ class Body {
404 404
405 $item['body'] = str_replace($result,'',$item['body']); 405 $item['body'] = str_replace($result,'',$item['body']);
406 406
407 - $item['body'] = $this->body_remove_tag($item['body'],"Content-");  
408 - $item['body'] = $this->body_remove_tag($item['body'],"Content-");  
409 - $item['body'] = $this->body_remove_tag($item['body'],"Content-");  
410 - $item['body'] = $this->body_remove_tag($item['body'],"Content-"); 407 +
  408 + $filecontent = explode("\r\n",@trim($item['body']));
  409 + $ki = 0;
  410 + foreach ($filecontent as $k=>$str){
  411 + if(!$str){
  412 + $ki = $k;
  413 + }
  414 + }
  415 + $filecontent = array_slice($filecontent,$ki+1,count($filecontent));
  416 + $item['body'] = implode("",$filecontent);
  417 +// $item['body'] = $this->body_remove_tag($item['body'],"Content-");
  418 +// $item['body'] = $this->body_remove_tag($item['body'],"Content-");
  419 +// $item['body'] = $this->body_remove_tag($item['body'],"Content-");
  420 +// $item['body'] = $this->body_remove_tag($item['body'],"Content-");
  421 +// $item['body'] = $this->body_remove_tag($item['body'],"X-");
411 422
412 $content = base64_decode(trim($item['body'])); 423 $content = base64_decode(trim($item['body']));
413 424