Image links broken in Gmail because of google's Image proxy

后端 未结 8 992
夕颜
夕颜 2020-12-13 03:38

Image links in gmail are broken because of google\'s Image proxy (news1,news2). I can\'t load my site\'s images in gmail.

Actual image path is: http://sampleimageurl.

8条回答
  •  不思量自难忘°
    2020-12-13 03:59

    I had the same issue and I solved the problem hosting the images in my public server (http://mydoamin.com/img/images.jpg).

    Next step responsive email displaying responsive images: CSS

    @media only screen and (max-device-width: 480px) {
       td.headercell { 
          background-image: url(images/header-650@2x.png) !important;
          background-size: 325px 115px;
          width: 325px !important;
          height: 115px !important;
       }
       td.headercell img {
          display: none;
       }
    }
    

提交回复
热议问题