...
|
...
|
@@ -251,8 +251,9 @@ class Body { |
|
|
|
|
|
// 邮件体包含邮件体
|
|
|
if(preg_match('/boundary="?(.*)("|\r)/i',$item,$bm)){
|
|
|
$bm[1] = trim(trim($bm[1],'"'));
|
|
|
|
|
|
if (str_contains($item, trim($bm[1]).'--')){
|
|
|
if (str_contains($item, $bm[1].'--')){
|
|
|
$data = (new self('--'.$bm[1]."\r\n".$item,$this->fileSavePath))->getItem();
|
|
|
// $this->setItem($data);
|
|
|
// 合并邮件体
|
...
|
...
|
|