开发者

Biztalk Server 2006 HTML Email with inline images

开发者 https://www.devze.com 2022-12-19 11:06 出处:网络
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开发者_运维百科o

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消