HTTPS Images Not Showing Up For Some Users In HTML Emails
There is a group of users who receive an HTML email that includes an image hosted by a third party. Previously all users could see the image without issue. However the image host m
Solution 1:
In the url for the image remove the http: or https: and just start the url with //yoursite.com
check below example
![]()
the code is <img src="//cdn.sstatic.net/stackoverflow/img/sprites.png?v=3c6263c3453b">
Solution 2:
I'm not exactly sure. In my template I use this linecode and works with http sentence
<a href= http://vbatools.pl ><img src=http://vbatools.pl/files/2013/11/VBATools_Logo.jpg style= border: none; width= 32 height= 32 alt= VBATools /></a>
Anyway, I was build add-in to create new email message using HTMLcode from file or paste to text window: http://vbatools.pl/utworz-maila-z-kodu-html/
That what you should to worried about, that picture/file available from internet.
If you want to use internal file (from attachment) and hide it, you should use "src=""cid:"
Post a Comment for "HTTPS Images Not Showing Up For Some Users In HTML Emails"