Home Page › Forums › BizTalk 2004 – BizTalk 2010 › Sending Html mail with embedded image via the smtp adapter › Re: Sending Html mail with embedded image via the smtp adapter
August 19, 2010 at 8:13 AM
#25684
Ok so if I have understood correctly,
in my orchestration:
1) for each picture in my HTTP content (ex: http://localhost/logo1.gif), I set a new part (example: partImage1 of type xmldocument) in my multi-part message :
outMsg.partImage1(MIME.ContentLocation) = http://localhost/logo.gif“
I set a CID programmatically : outMsg.partImage1(MIME.ContentID) = 12345;
2) programmatically, I replace in my HTML the node like this : src=”cid:12345″ ?