1

So I'm testing out a transactional email using Sendgrid and for some reason the image location is broken even though it exists. I have a really simple image tag, with the FULL path,

<img src="https://matter.io/static/img/landing/logo.svg">

Yet in the email is shows up as broken. What's strange is when I copy the link sendgrid or gmail creates to the image path

https://ci6.googleusercontent.com/proxy/hD3tzoEqBpQwN0NnCaHw6Qsz9nfiDMQH7YONXb0etReSXaeSJtzVFaiiJOSCJR3ch4STfG_ddYH0Oj99MFWNdAUBtw=s0-d-e1-ft#https://matter.io/static/img/landing/logo.svg

It doesn't work, but if I take the link at the end of that huge mess, I can go to it

Is it a problem with serving images through https? Or perhaps something else?

bwest
  • 9,182
  • 3
  • 28
  • 58
user1561753
  • 357
  • 2
  • 3
  • 13

1 Answers1

4

The gmail proxy that was added to cache images does not support SVG. See SVG images blocked by gmail proxy.

Community
  • 1
  • 1
bwest
  • 9,182
  • 3
  • 28
  • 58
  • Thanks sooo much! I would have probably spent another couple of hours trying to figure this out. This is really random – user1561753 May 23 '14 at 00:45