作者 邓超

自动回复调优

@@ -817,10 +817,10 @@ function getBodyHtml($body){ @@ -817,10 +817,10 @@ function getBodyHtml($body){
817 $text = ''; 817 $text = '';
818 foreach ($body as $bd){ 818 foreach ($body as $bd){
819 if(($bd['type']??'') == 'text/html'){ 819 if(($bd['type']??'') == 'text/html'){
820 - $html = base64_decode($bd['body']??''); 820 + $html = @base64_decode($bd['body']??'');
821 } 821 }
822 if(($bd['type']??'') == 'text/plain'){ 822 if(($bd['type']??'') == 'text/plain'){
823 - $text = base64_decode($bd['body']??''); 823 + $text = @base64_decode($bd['body']??'');
824 } 824 }
825 } 825 }
826 826