我正在尝试使用电子邮件中的嵌入图像作为背景图像,我有以下代码可以嵌入它:
LinkedResource backgroundLink = new LinkedResource("..\\..\\background.gif");
backgroundLink.ContentId = "BackgroundImage";
backgroundLink.TransferEncoding = System.Net.Mime.TransferEncoding.Base64;
htmlView.LinkedResources.Add(backgroundLink);
m.AlternateViews.Add(htmlView);
然后在电子邮件正文中,我有以下代码要测试:
<table background='cid:BackgroundImage'>
<tr>
<td>
test
</td>
</tr>
</table>
它不显示,但是当我将它作为这样的图像放入时很好:
<table>
<tr>
<td>
<img src='cid:BackgroundImage' />
</td>
</tr>
</table>
有谁知道为什么它不会显示为背景?
提前谢谢了 :)