我需要在电子邮件中嵌入图像。我该怎么做?
我既不想使用第三方工具,也不想对特定于语言的答案感兴趣(但是如果您想知道的话,它就是PHP)。
我只对生成的电子邮件正文的格式感兴趣。
如您所知,作为电子邮件传递的所有内容都必须文本化。
<img />
典型的电子邮件示例如下所示:
From: foo1atbar.net To: foo2atbar.net Subject: A simple example Mime-Version: 1.0 Content-Type: multipart/related; boundary="boundary-example"; type="text/html" --boundary-example Content-Type: text/html; charset="US-ASCII" ... text of the HTML document, which might contain a URI referencing a resource in another body part, for example through a statement such as: <IMG SRC="cid:foo4atfoo1atbar.net" ALT="IETF logo"> --boundary-example Content-Location: CID:somethingatelse ; this header is disregarded Content-ID: <foo4atfoo1atbar.net> Content-Type: IMAGE/GIF Content-Transfer-Encoding: BASE64 R0lGODlhGAGgAPEAAP/////ZRaCgoAAAACH+PUNv cHlyaWdodCAoQykgMTk5LiBVbmF1dGhvcml6ZWQgZHV wbGljYXRpb24gcHJvaGliaXRlZC4A etc... --boundary-example--
正如你所看到的,Content-ID: <foo4atfoo1atbar.net>ID匹配到<IMG>的SRC="cid:foo4atfoo1atbar.net"。这样,客户端浏览器会将您的图像呈现为内容而不是附件。
Content-ID: <foo4atfoo1atbar.net>
<IMG>
SRC="cid:foo4atfoo1atbar.net"
希望这可以帮助。