...
|
...
|
@@ -404,10 +404,21 @@ class Body { |
|
|
|
|
|
$item['body'] = str_replace($result,'',$item['body']);
|
|
|
|
|
|
$item['body'] = $this->body_remove_tag($item['body'],"Content-");
|
|
|
$item['body'] = $this->body_remove_tag($item['body'],"Content-");
|
|
|
$item['body'] = $this->body_remove_tag($item['body'],"Content-");
|
|
|
$item['body'] = $this->body_remove_tag($item['body'],"Content-");
|
|
|
|
|
|
$filecontent = explode("\r\n",@trim($item['body']));
|
|
|
$ki = 0;
|
|
|
foreach ($filecontent as $k=>$str){
|
|
|
if(!$str){
|
|
|
$ki = $k;
|
|
|
}
|
|
|
}
|
|
|
$filecontent = array_slice($filecontent,$ki+1,count($filecontent));
|
|
|
$item['body'] = implode("",$filecontent);
|
|
|
// $item['body'] = $this->body_remove_tag($item['body'],"Content-");
|
|
|
// $item['body'] = $this->body_remove_tag($item['body'],"Content-");
|
|
|
// $item['body'] = $this->body_remove_tag($item['body'],"Content-");
|
|
|
// $item['body'] = $this->body_remove_tag($item['body'],"Content-");
|
|
|
// $item['body'] = $this->body_remove_tag($item['body'],"X-");
|
|
|
|
|
|
$content = base64_decode(trim($item['body']));
|
|
|
|
...
|
...
|
|