Gmail shows download icon on images of HTML Email

后端 未结 8 1093
礼貌的吻别
礼貌的吻别 2021-02-14 02:07

We have a Html Builder, that allows you to create responsive html for emails. We are using a third party engine to send the emails in bulk. The problem is, when email is being o

8条回答
  •  野的像风
    2021-02-14 02:32

    Easy and clean way to prevent image downloading and to remove download icon in gmail

    Method 1 :- Add .a5q {display: none !important;} css class into tag.

    Method 2 :- Add tabletabletable div {display: none !important;} style into section within tag.

    Method 3 :- just Bind your image tag with a(anchor) tag with following css style:
    style="cursor:default;"

    Method 4 :- An another method to do this , again just Bind your image tag with a(anchor) tag with following css style:
    style="pointer-events:none;"

提交回复
热议问题