0
我想在填充了SQL Server表數據的表的列中添加圖標/圖像&將生成的電子郵件發送出去。將圖像插入到SQL Server存儲過程中的HTML表中,以便與DBMail一起使用
因爲它代表所有我收到的電子郵件是
<img src="cid:RedTL.gif"/>
我的代碼:
--Full path set within attachments
@file_attachments='E:\RedTL.gif',
SET @TBLHTML=
N'<STYLE type="text/css">' +
N'.Table { background-color:#D8E7FB;border-collapse:separate;color:#000;font-size:18px; }' +
N'.Table th { background-color:#0E0355;color:white; }' +
N'.Table td, .Table th { padding:5px;border:0; }' +
N'.Table td { border: 1px dotted white; }' +
N'</STYLE>' +
N'<table class="Table">' +
N'<th><font face="calibri" size="2">Column1</th>' +
N'<th><font face="calibri" size="2">Image Column</font></th>' +
N'<th><font face="calibri" size="2">Column3</font></th>' +
N'<th><font face="calibri" size="2">Column4</font></th>' +
N'<th><font face="calibri" size="2">Column5</font></th>' +
N'<th><font face="calibri" size="2">Column6</font></th>' +
CAST (( SELECT td=[Column1],'',
--filename is referenced
td='<img src="RedTL.gif"/>','',
td=[Column2],'',
td=[Column3],'',
td=[Column4],'',
td=[Column5],''
FROM [Table1]
ORDER BY [Column1]
FOR XML PATH('tr'), TYPE
) AS NVARCHAR(MAX)) +
N'</table>'
我有其他圖像嵌入很好,只是具有嵌入表中的一個問題。
將在Outlook中查看電子郵件&不會離開內部網絡。
任何指針都會棒極了!
感謝
我認爲你應該嵌入圖像,而不是指向一個路徑 – TheGameiswar
這是完全相似的,幷包含源代碼示例以及:http://stackoverflow.com/questions/6706891/embedding-image-in-html-email – TheGameiswar
可能重複[嵌入圖像在HTML電子郵件](http://stackoverflow.com/questions/6706891/embedding-image-in-html-email) – TheGameiswar