作者 邓超

x

... ... @@ -75,6 +75,11 @@ class Body {
$items = explode("\r\n".$boundary,
str_replace(['--'.$boundary.'--', $boundary.'--','--'.$boundary],$boundary,"\r\n".$body)
);
// qq的有邮箱有毛病,标记是乱的
if(count($items)==1 && preg_match("/^\*\s\d+\sFETCH\s\(/",$body)){
$this->parseRawHtml($body);
return;
}
// 第一个块和最后一块 是没用的块
array_shift($items);array_pop($items);
foreach ($items as $item){
... ...