避免合法邮件的垃圾邮件过滤器

发布于 2024-07-07 22:09:10 字数 382 浏览 11 评论 0原文

重复如何您确保以编程方式发送的电子邮件不会自动标记为垃圾邮件吗?

最初,我计划从我的网站以 html 形式发送电子邮件(即内容类型:text/html;),但我只是想到今天的事情,以纯文本形式发送电子邮件不是更好吗,即内容类型:text/plain;,这样我的邮件最终进入垃圾邮件/垃圾文件夹的机会就会减少,我想这必须作为 gmail、yahoo 和 hotmail 等流行网络邮件服务上的垃圾邮件过滤器使用的规则之一,您有何看法?

Duplicate of How do you make sure email you send programmatically is not automatically marked as spam?

Initially I planned to send emails from my website as html (i.e. content-type: text/html;) but I just thought about something today, won't it better to send emails as plain text, i.e. content-type: text/plain;, so that the chances of my mail messages ending up in the spam/junk folder become less, I was thinking that this must be one the rules used by spam filters on popular webmail services like gmail, yahoo and hotmail, what do you think?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

﹎☆浅夏丿初晴 2024-07-14 22:09:10

根据我的经验,大多数反垃圾邮件系统对 HTML 的 Hamminess 的评分略低于纯文本,但还有更重要的事情需要考虑,这些因素会影响送达率:

  • 确保您的邮件服务器具有有效的反向 DNS 配置,否则您将无法送达至许多领域。
  • 研究将 SPF 记录添加到您的 DNS 区域文件中。 这很有帮助,尤其是对于 GMail。
  • 查看 DomainKeys(如果您的平台上可用)。 这本质上是附加到您的出站邮件上的加密签名,因此它证明您是发送该邮件的人。
  • 检查您的邮件内容并确保您没有使用任何明显是垃圾邮件标志的词语(特别是在主题行中)。

In my experience, most anti-spam systems will score HTML's Hamminess slightly below plaintext, but there are much more important things to consider that affect deliverability:

  • make sure you have a valid Reverse DNS configuration for your mail server, or you will be undeliverable to many domains.
  • investigate adding an SPF record to your DNS zone file. This helps, particularly with GMail.
  • Look into DomainKeys, if it's available on your platform. This is essentially a cryptographic signature attached to your outbound mail, so it proves that you are the person who sent it.
  • Review your message content and make sure you aren't using any words (particularly in the subject line) that are obvious spam indicators.
旧人 2024-07-14 22:09:10

我认为为了安全起见,除了 Tim Howland 建议的之外,您始终可以先发送一封纯文本电子邮件欢迎此人,并要求将您的域名放入他们的电子邮件安全文件中。 我发现大公司经常发生这种情况; 我收到一封纯文本电子邮件,内容为“欢迎,请确保[电子邮件受保护]在您的安全电子邮件文件中。”

我不能说您的纯文本电子邮件一开始就不会被视为垃圾邮件,但至少这是确保您的 HTML 电子邮件顺利通过的简单第一步。

I think to be safe, other than what Tim Howland recommended, you could always first send a plain text email welcoming the person and asking to put your domain in their email safe file. I see this happen a lot with big companies; I get a plain text email saying "Welcome, make sure [email protected] is in your safe-email file."

I can't say that your plain text email wouldn't be considered spam in the first place, but at least this is an easy first step to ensure your HTML emails get through.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文