Images in html from an file url

Good morning,

I have to insert in an html template images which are from local servers with windows shares.

the image is visible in the html file but not in the word doc. To be sure that permission is not the problem I created a test app on my local workstation and shared there as well a sub folder with rights to everyone.

The sub folder ImageShare is the location of the file where I made the windows share for tests.

The user has admin rights and can see the html file perfect but after running the code in the word the link is broken.

thanks for your help.

regards

Siegfried

Hi
Thanks for your request. If your image is in the shared folder, then you should specify path to it as show below:

<html>
<body>
    <H1>Image Test</H1>
    <p><br></p>
    <p>Coba Logo</p>
    <p><br></p>
    <p><IMG src="file:///\\PCNameOrIP\SharedFolder\ImageName.jpg"></p>
</body>
</html>

Hope this helps.
Best regards.

issue solved

thanks Alexey,