Biztalk Server 2006 HTML Email with inline images
I m quite new in Biztalk Server 2006 and I have a problem regarding sending HTML Email with inline images. What I have do so far is sending HTML emails (or text emails) in BizTalk with开发者_运维百科out embedded images which works.
Could somebody help me with this? Thank you very much for your efforts!
Br, Toan
If you're sending an HTML message, then it is just the case of adding the
The issue then is that you need to save the image on a public internet address (assuming that the message goes outside the firewall) or on a server in your intranet that everyone can access.
An example of the image tag would be:
<img src="http://mylocalserver/images/myimage.jpg" /> This is the internal server example
or
<img src="http://myexternalserver.com/images/myimage.jpg" /> This is the external server example
Hopefuly this helps.
精彩评论