这可能不是最合适的地方,我已经发布到Mozilla主板,但我猜这样会有更多的眼球...无论如何:
我们正在生成包含内嵌图片的HTML电子邮件。它们在Outlook 2007中显示正常,但不与Thunderbird 2.0.0.23一起呈现,它们显示为附件。我的thunderbird客户端中有以下设置:
Display attachments inline: tick
Message Body As: Original HTML
据我所知,各种标题都是正确的(来自Thunderbird视图源):
------=_Part_1_9884354.1303120232543
Content-Type: image/gif; name=classpath_466bd94ae6b_before.gif
Content-Transfer-Encoding: base64
Content-Disposition: inline; filename=classpath_466bd94ae6b_before.gif
Content-ID: <classpath_466bd94ae6b_before.gif>
和HTML(Thunderbird来源):
<img title=3D"Before" alt=3D"Before" height=3D"13" width=3D"52" src=3D"cid:classpath_466bd94ae6b_before.gif"/>
根据文档,一切看起来都很好,任何建议都值得赞赏。
由于
答案 0 :(得分:1)
我有同样的问题并通过更改Content-Type来解决它:multipart / mixed;到Content-Type:multipart / related; (在构建的电子邮件的MIME中)