作者 邓超

m

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