gpt4 book ai didi

php - 电子邮件的动态图像,例如倒计时时钟(根据 gmail 图像缓存)

转载 作者:可可西里 更新时间:2023-10-31 23:09:19 24 4
gpt4 key购买 nike

我想做的是:在电子邮件正文中添加一个动态倒计时时钟

是什么让我痛苦:Google 决定为 gmail 客户端的用户缓存图片

去年 11 月,我使用这种技术为我的公司实现了一个电子邮件倒计时时钟:

Countdown Timer Image GIF in Email

工作起来很神奇,但是在 12 月,当 Google 决定为使用 Gmail 客户端的用户缓存所有图像时,他们抛出了一个主要的事件 Spanner 。

http://kickdynamic.com/update-on-the-gmail-image-change/

因此,该问题会影响所有使用 gmail 客户端并再次打开电子邮件的用户。他们将看到缓存的图像。对于像倒计时时钟这样的东西,这会造成很大的伤害。

不可否认,这有点像盲目的求救信号,但有没有人想出如何制作一个不受谷歌图像缓存影响的电子邮件倒计时时钟?

最佳答案

我遇到了同样的问题。因此,对于以下 header ,我禁用了图像缓存,它也适用于 Gmail(因此 Gmail Image Proxy 尊重缓存 header ):

header('Content-Type: image/jpeg');
header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");

Credits to this library note .

关于php - 电子邮件的动态图像,例如倒计时时钟(根据 gmail 图像缓存),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21802820/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com