作者 邓超

m

@@ -145,6 +145,12 @@ class Body { @@ -145,6 +145,12 @@ class Body {
145 // 有些邮件带有附件 就嵌套 145 // 有些邮件带有附件 就嵌套
146 $this->parseBoundaryBody($text,$data->boundary); 146 $this->parseBoundaryBody($text,$data->boundary);
147 }else{ 147 }else{
  148 +
  149 + // content-type = Application/Octet-stream 因为它告诉浏览器不要尝试解释文件内容,而是将其作为二进制数据下载到用户的计算机上。这在处理未知文件类型或者需要强制下载文件时非常有用。
  150 + // 这个里面好像是原始的邮件 mime内容,所谓的原始邮件体
  151 + // 当附件显示即可
  152 +// text/x-amp-html 这个是html的一种 加速移动页面 感觉有点像是手机页面
  153 +
148 $data->body = $text; 154 $data->body = $text;
149 $this->items[] = $this->bodyDeCode($data); 155 $this->items[] = $this->bodyDeCode($data);
150 } 156 }