...
|
...
|
@@ -150,6 +150,7 @@ class Body { |
|
|
// 这个里面好像是原始的邮件 mime内容,所谓的原始邮件体
|
|
|
// 当附件显示即可
|
|
|
// text/x-amp-html 这个是html的一种 加速移动页面 感觉有点像是手机页面
|
|
|
// message/delivery-status 投递状态
|
|
|
|
|
|
$data->body = $text;
|
|
|
$this->items[] = $this->bodyDeCode($data);
|
...
|
...
|
@@ -165,7 +166,7 @@ class Body { |
|
|
*/
|
|
|
private function bodyDeCode(DataArray $data):DataArray {
|
|
|
// 处理body体 的编码
|
|
|
switch ($data->get('Content-Transfer-Encoding')){
|
|
|
switch (strtolower($data->get('Content-Transfer-Encoding'))){
|
|
|
case 'quoted-printable':{
|
|
|
$data->body = quoted_printable_decode($data->body);break;
|
|
|
}
|
...
|
...
|
|