简体   繁体   English

跟踪电子邮件是否被标记为垃圾邮件

[英]Track if the email is marked as spam

I have an asp.net autoresponder that sends emails to millions of subscribers. 我有一个asp.net自动回复器,可以将电子邮件发送给数百万个订阅者。 I want to track if a person mark my emails as spam. 我想跟踪是否有人将我的电子邮件标记为垃圾邮件。 is there any way to do this? 有什么办法吗?

Thanks in advance. 提前致谢。

No, there isn't. 不,没有。 After your mail has been sent to your receiver's SMTP server, there's no way to track it down anymore. 将邮件发送到收件人的SMTP服务器之后,就无法再对其进行跟踪了。

I know what you're thinking: how can some mail-clients track down wether an email has been read or not (eg in Outlook). 我知道您在想什么:无论邮件是否已被阅读(例如,在Outlook中),某些邮件客户端如何跟踪。 They can do this by adding a little img-tag to their mails (html). 他们可以通过在邮件(html)中添加一些img标签来做到这一点。 When a user opens the mail, it'll open the path specified in the img's src-attribute. 用户打开邮件时,将打开img的src属性中指定的路径。 Since that's a script (like PHP or something), it can automatically sets a flag to 'seen' when a mail has been opened. 由于这是一个脚本(例如PHP之类的脚本),因此它可以在打开邮件后自动将标志设置为“已看到”。

Of course, there are some other ways to track this down, but I think this is the most popular one. 当然,还有其他方法可以追踪到这一点,但是我认为这是最受欢迎的一种。

However, this can't be done to check whether a mail has been rejected, deleted or moved to the spam-folder. 但是,无法检查邮件是否已被拒绝,删除或移至垃圾邮件文件夹。

I would recommend http://www.mxtoolbox.com/ as an example of sites to use for checking if your server/sending IP is blacklisted. 我建议使用http://www.mxtoolbox.com/作为网站示例,以检查您的服务器/发送IP是否已列入黑名单。

You can also sign up for feedback loop services with major or relevant email providers for your list(s) to be informed when messages are reported as spam. 您也可以与主要或相关电子邮件提供商签署反馈循环服务,以将列表报告为垃圾邮件时通知您。 Feedback loops are probably the best mechanism for the information you are trying to gather. 反馈循环可能是您要收集的信息的最佳机制。

Example of a feedback loop and how to subscribe to it: http://postmaster.aol.com/Postmaster.FeedbackLoop.php 反馈循环及其订阅方式的示例: http : //postmaster.aol.com/Postmaster.FeedbackLoop.php

I can't post more than 2 links but if you Google "feedback loop" and the name of the email provider you are likely to find what you need to sign up for their alerts. 我发布的链接不能超过2个,但是如果您使用Google“反馈循环”和电子邮件提供商的名称,则可能会找到注册他们的警报所需的内容。

Hope that helps. 希望能有所帮助。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM