使用 .aspx url 跟踪 Outlook 中的电子邮件视图的假图像不起作用!
我的 HTML 电子邮件中包含此内容,用于跟踪是否有人在 Outlook 中查看该电子邮件。
<img src="http://www.example.com/track.ashx?user=3434" />
但这似乎不起作用。
我应该将 .ashx 中的标头更改为服务器图像标头吗? (如果有的话?)
使用这种方法可以吗?
我给自己发了一封电子邮件,其他图像显示正常。数据库中没有处理程序的日志(处理程序将所有请求记录到数据库)。在浏览器中调用文件的 URL 会记录到数据库,因此它可以工作。
I have this in my HTML email to track if someone views the email in say Outlook.
<img src="http://www.example.com/track.ashx?user=3434" />
but this doesn't seem to work.
Should I change my headers in the .ashx to server image headers? (if there are any?)
Can this work using this method?
I emailed myself with an email, other images displayed properly. There was no log in the database for the handler (the handler logs all requests to the db). Calling the URL to the file in the browser logs to the db, so its working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你做了什么测试?如今,许多电子邮件客户端不会下载与电子邮件关联的图像,除非用户明确请求或将发件人添加到白名单中。您的 HTML 和服务器可能都是正确的,但客户端只是不尝试访问该 URL。
What testing have you done? A lot of email clients these days don't download images associated with an email unless the user explicitly requests it or adds the sender to a whitelist. It's possible your HTML and server are all correct, but the client just isn't attempting to go to the URL.
电子邮件客户端是否设置为显示图片?许多人默认情况下不这样做。
Are the email clients set to display pictures? Many don't by default.