正在显示
1 个修改的文件
包含
2 行增加
和
2 行删除
| @@ -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 |
-
请 注册 或 登录 后发表评论