作者 邓超

自动回复调优

... ... @@ -817,10 +817,10 @@ function getBodyHtml($body){
$text = '';
foreach ($body as $bd){
if(($bd['type']??'') == 'text/html'){
$html = base64_decode($bd['body']??'');
$html = @base64_decode($bd['body']??'');
}
if(($bd['type']??'') == 'text/plain'){
$text = base64_decode($bd['body']??'');
$text = @base64_decode($bd['body']??'');
}
}
... ...