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
<ahref= http://vbatools.pl ><imgsrc=http://vbatools.pl/files/2013/11/VBATools_Logo.jpgstyle= border:none; width= 32height= 32alt= 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"