在郵件內容中顯示附件中的圖片

- 中國WEB開發者網絡 (http://www.webasp.net)
-- 技術教程 (http://www.webasp.net/article/)
--- 在郵件內容中顯示附件中的圖片 (http://www.webasp.net/article/8/7680.htm)
-- 作者:未知
-- 發佈日期: 2003-08-22
<img src="cid:123"> 使用cid:標記,表明圖形是放在一個叫123的附件中的
然後加入一個附件,指定為
content-type: image/gif
content-id: <123> 即上面那個123
content-disposition: inline; filename="sdfsdf" filename是隨便指定的
content-transfer-encodinf: base64

這裡是附件內容要求用base64編碼

webasp.net