您是否向“垃圾邮件机器人”隐藏电子邮件地址? 在网站上?

发布于 2024-08-01 16:41:10 字数 421 浏览 6 评论 0 原文

尽管仍然有机器人收集电子邮件,但我想知道您是否在网站上隐藏了电子邮件地址。 我知道这在几年前是常见的做法,但现在似乎已经开始消失。

不这样做的原因:

  • 大多数电子邮件服务器都包含高质量的垃圾邮件防护,包括 Gmail 等服务,但几乎没有任何邮件能够通过。
  • 编码很烦人,因为您必须记住,并且以后搜索更改电子邮件可能会很棘手,
  • 没有任何方法可以阻止任何收集

原因:

  • 避免进入您不想加入的列表 避免
  • 某些机器人获取用于发送电子邮件的地址,这些电子邮件无法被垃圾邮件(特定销售/营销电子邮件)检测到,或者从技术上讲,这些机器人不会向
  • 客户或您的客户 发送垃圾邮件服务器没有很好的垃圾邮件检测功能

您是否这样做?您的原因是什么?

Although there are still bots harvesting emails, I'm wondering if you hide email addresses on websites. I know this was common practice a few years back, but it seems that it's starting to fade.

Reasons not to:

  • most email servers include quality spam protection, including services such as Gmail and hardly any gets through
  • it's annoying to code as you have to remember and searching to change the email later can be tricky
  • no method will prevent any harvesting

Reasons to:

  • avoid getting on lists you don't want to be a part of
  • avoid some bots that are getting addresses for sending emails that can't be detected by spam (specific sales/marketing emails) or that technically aren't spam
  • the client or your servers don't have great spam detection

Do or don't you and what are your reasons?

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

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

发布评论

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

评论(6

墨小沫ゞ 2024-08-08 16:41:10

我偶尔会这样做,具体取决于电子邮件地址以及客户可能使用的内容。 正如您所说,GMAIL 地址通常在垃圾邮件过滤方面非常强大。 不过,我通常会混淆地址,例如使用上面 Jason 的实用程序或如下所示的技术...

http://techblog.tilllate.com/2008/07/20/ten-methods-to-obfuscate-e-mail-addresses-比较/

I do occassionally, depends on the email address and what the client might be using. As you say, a GMAIL address is usually pretty robust at spam filtering. Often I'll obfuscate the address though, like using a utility like Jason's above or a technique as shown below...

http://techblog.tilllate.com/2008/07/20/ten-methods-to-obfuscate-e-mail-addresses-compared/

近箐 2024-08-08 16:41:10

老实说,我一般不会打扰,因为 GMail 的垃圾邮件防护非常出色。 但我也并不真正通过电子邮件开展业务。

In terms of an honest answer, I generally don't bother, because GMail's spam protection is so great. But I also don't really conduct business via e-mails.

似狗非友 2024-08-08 16:41:10

在我看来,反对隐藏的最重要的一点是:

  • 它降低了可用性,
  • 并且让我(作为用户)感到烦恼。

十多年来,我将我的(非 gmail)电子邮件地址公开为普通 [电子邮件受保护]">进入网络。 UBE没有问题。

IMO the most important points against hiding are:

  • it reduces usability,
  • and it annoys me (speaking as a user)

I publish my (non gmail) email address since more than 10 years as plain <a href="mailto:[email protected]"> into the web. There is no problem with UBE.

简单 2024-08-08 16:41:10

您可以隐藏您的电子邮件地址并使用 JS 显示它。 这也不是万无一失的,但提供了一些保护。

像这样的事情应该可以解决问题:

<a class="mail">contact me</a>

// in JS
var parts = ['my', '.', 'email', '@', 'example', '.', 'com'];
var elems = document.getElementsByClassName('mail');
var len = elems.length;
for (var i = 0; i < len; i++) {
    elems[i].href = 'mailto:' + parts.join('');
}

You can hide your email address and display it using JS. This isn't also foolproof but offers some protection.

Something like this should do the trick:

<a class="mail">contact me</a>

// in JS
var parts = ['my', '.', 'email', '@', 'example', '.', 'com'];
var elems = document.getElementsByClassName('mail');
var len = elems.length;
for (var i = 0; i < len; i++) {
    elems[i].href = 'mailto:' + parts.join('');
}
手心的海 2024-08-08 16:41:10

是的,垃圾邮件机器人仍然会收集电子邮件。 我看到一些统计数据显示,今天 90% 的电子邮件都是垃圾邮件。 混淆您的电子邮件: http://alicorna.com/obfuscator.html 这并不万无一失,但是这使得您的电子邮件地址更难被窃取。

此外,您还可以像 Facebook 一样制作图像。

Yes, SPAM bots still harvest emails. I saw some stat that said 90% of all email today is SPAM. Obfuscate your email: http://alicorna.com/obfuscator.html It isn't foolproof, but it makes it way harder for your email address to be harvested.

Also, you can make images like facebook does.

你又不是我 2024-08-08 16:41:10

请参阅 http://hidemail.at 将您的电子邮件地址转换为一个很酷的垃圾邮件地址,并通过您可以分享的验证码服务链接进行验证网络、Twitter、论坛、Craigslist、任何地方

以下是要发布的电子邮件示例,以防止机器人链接尝试:

See http://hidemail.at converting your email address into a cool spam-prooved by a captcha service link you can share on the web, in Twitter, forums, Craigslist, anywhere

Here is an example of Email to be published as protected from bots link to try out:

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