Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

On my home page I'm using next method to hide my email from spam bots:

<a href="admin [at] example.com"
   rel="nofollow"
   onclick="this.href='mailto:' + 'admin' + '@' + 'example.com'">Contact me</a>

What do you think about it? Is it effective? What other methods do you know or use?

share|improve this question

23 Answers

I have a completely different take on this. I use MailHide from the reCaptcha folks for this.

share|improve this answer

This is the method I used, with a server-side include:

<!-- // http://lists.evolt.org/archive/Week-of-Mon-20040202/154813.html -->
<script type="text/javascript"><!--
function gen_mail_to_link(lhs,rhs,subject)
{
document.write("<A HREF=\"mailto");
document.write(":" + lhs + "@");
document.write(rhs + "?subject=" + subject + "\">" + lhs + "@" + rhs + "<\/A>"); } 
// --> </SCRIPT>

To include an address:

<SCRIPT LANGUAGE="JavaScript" type="text/javascript"><!-- 
  gen_mail_to_link('john.doe','example.com','Feedback about your site...')
// --> </SCRIPT>
<NOSCRIPT>
  <em>Email address protected by JavaScript. Activate javascript to see the email.</em>
</NOSCRIPT>

Since I get mail at Gmail since 2005, spam is pretty much a non-issue. So, I can't speak of how effective this method is. You might want to read this study (although it's old) that produced this graph:

enter image description here

share|improve this answer
+1 for the graph and the link. – tripleee Sep 26 '12 at 7:34

I think the only foolproof method you can have is creating a Contact Me page that is a form that submits to a script that sends to your email address. That way, your address is never exposed to the public at all. This may be undesirable for some reason, but I think it's a pretty good solution. It often irks me when I'm forced to copy/paste someone's email address from their site to my mail client and send them a message; I'd rather do it right through a form on their site. Also, this approach allows you to have anonymous comments sent to you, etc. Just be sure to protect your form using some kind of anti-bot scheme, such as a captcha. There are plenty of them discussed here on SO.

share|improve this answer
2  
The only problem with this is that you don't have a copy of the message you sent unless you take the time to copy and paste it somewhere else. Personally I don't mind copy and paste but to each their own. – gvkv Jun 13 '09 at 19:58
2  
As for the sender not having a copy: for many kind of forms on the web I love the option to get a copy myself. However, often such an option allows for abuse for anonymously sending messages to just about anyone... – Arjan Jul 5 '09 at 10:12
2  
This may HIDE your email address, but it wont stop the spam at all, unless you secure your form with a captcha image validation script. – SimonDowdles Aug 3 '10 at 9:33

have a look at this way , pretty clever and using css

Hope it helps

Cheers

share|improve this answer
It's surely funny. But unfortunately, this is not clickable and won't work for copy/paste, while neglecting any non-CSS browser such as braille readers. – Arjan Jul 5 '09 at 10:09
Mhh nice, but once people who write crawlers see it, it becomes useless. – Mau Aug 3 '10 at 9:51

If you have php support, you can do something like this:

<img src="scriptname.php">

And the scriptname.php:

<?php
header("Content-type: image/png");
// Your email address which will be shown in the image
$email    =    "you@yourdomain.com";
$length    =    (strlen($email)*8);
$im = @ImageCreate ($length, 20)
     or die ("Kann keinen neuen GD-Bild-Stream erzeugen");
$background_color = ImageColorAllocate ($im, 255, 255, 255); // White: 255,255,255
$text_color = ImageColorAllocate ($im, 55, 103, 122);
imagestring($im, 3,5,2,$email, $text_color);
imagepng ($im);
?>
share|improve this answer

See Making email addresses safe from bots on a webpage?

I like the way Facebook and others render an image of your email address.

I have also used The Enkoder in the past - thought it was very good to be honest!

share|improve this answer
Yep...I quite like enkoder as well. – Kev Jan 27 '09 at 12:53

One easy solution is to use HTML entities instead of actual characters. For example, the "me@example.com" will be converted into :

<a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#109;&#101;&#64;&#101;&#120;&#97;&#109;&#112;&#108;&#101;&#46;&#99;&#111;&#109;">email me</A>
share|improve this answer
Could you please tip me about a site which has a service for quick conversion such you did. – abatishchev Jan 27 '09 at 12:31
1  
Try google.se/search?q=HTML+entities+converter that should keep you busy ;) – grapefrukt Jan 27 '09 at 12:34
1  
Google can find you lots of page for that. One example: hp.vector.co.jp/authors/VA022023/javascript/… – romaintaz Jan 27 '09 at 12:36
But couldn't a bot just as easily regex that as well? – gargantaun Jun 13 '09 at 12:04
17  
Ouch, the me@stack... example should better be written as me@example.com, me@example.net or me@example.org -- those are the only domain names non-owners should use in examples! – Arjan Jun 13 '09 at 12:29
show 2 more comments

There are probably bots that recognize the [at] and other disguises as @ symbol. So this is not a really effective method.

Sure you could use some encodings like URL encode or HTML character references (or both):

// PHP example
// encodes every character using URL encoding (%hh)
function foo($str) {
    $retVal = '';
    $length = strlen($str);
    for ($i=0; $i<$length; $i++) $retVal.=sprintf('%%%X', ord($str[$i]));
    return $retVal;
}
// encodes every character into HTML character references (&#xhh;)
function bar($str) {
    $retVal = '';
    $length = strlen($str);
    for ($i=0; $i<$length; $i++) $retVal.=sprintf('&#x%X;', ord($str[$i]));
    return $retVal;
}

$email = 'user@example.com';
echo '<a href="'.bar('mailto:?to=' . foo(','.$email.'')).'">mail me</a>';

// output
// <a href="&#x6D;&#x61;&#x69;&#x6C;&#x74;&#x6F;&#x3A;&#x3F;&#x74;&#x6F;&#x3D;&#x25;&#x32;&#x43;&#x25;&#x37;&#x35;&#x25;&#x37;&#x33;&#x25;&#x36;&#x35;&#x25;&#x37;&#x32;&#x25;&#x34;&#x30;&#x25;&#x36;&#x35;&#x25;&#x37;&#x38;&#x25;&#x36;&#x31;&#x25;&#x36;&#x44;&#x25;&#x37;&#x30;&#x25;&#x36;&#x43;&#x25;&#x36;&#x35;&#x25;&#x32;&#x45;&#x25;&#x36;&#x33;&#x25;&#x36;&#x46;&#x25;&#x36;&#x44;">mail me</a>

But as it is legal to use them, every browser/e-mail client should handle these encodings too.

share|improve this answer
Totally agree, spammers are "clever" people, after years of people adding [at] or [dot] in place of the syntax, of course they're going to have algorithms that pick these patterns up. – SimonDowdles Aug 3 '10 at 9:35
What about decoding these HEX values? – buildakicker Apr 4 '12 at 22:31

One of my favorite methods is to obfuscate the email address using php, a classic example is to convert the characters to HEX values like so:

function myobfiscate($emailaddress){
 $email= $emailaddress;                
 $length = strlen($email);                         
 for ($i = 0; $i < $length; $i++){                
 $obfuscatedEmail .= "&#" . ord($email[$i]).";";
 }
 echo $obfuscatedEmail;
}

And then in my markup I'll simply call it as follows:

<a href="mailto:<?php echo myobfiscate('someone@somewhere.com')" title="Email me!"><?php echo myobfiscate('someone@somewhere.com');</a>

Then examine your source, you'll be pleasantly surprised!

share|improve this answer
That is a nice example. Thanks. Any clue as to SpamBots using HEX decoding? – buildakicker Apr 4 '12 at 22:29

!- Adding this for reference, don't know how outdated the information might be, but it tells about a few simple solutions that don't require the use of any scripting

After searching for this myself i came across this page but also these pages:

http://nadeausoftware.com/articles/2007/05/stop_spammer_email_harvesters_obfuscating_email_addresses

try reversing the emailadress

Example plain HTML:

<bdo dir="rtl">moc.elpmaxe@nosrep</bdo>
Result : person@example.com

The same effect using CSS

CSS:
.reverse { unicode-bidi:bidi-override; direction:rtl; }
HTML:
<span class="reverse">moc.elpmaxe@nosrep</span>
Result : person@example.com

Combining this with any of earlier mentioned methods may even make it more effective

share|improve this answer

The best method hiding email addresses is only good until bot programmer discover this "encoding" and implement a decryption algorithm.

The JavaScript option won't work long, because there are a lot of crawler interpreting JavaScript.

There's no answer, imho.

share|improve this answer
Are there crawlers interpreting JavaScript? My one JavaScript encoding method has seemed to work well for me over the past few years--my spam rate has been a fairly steady ~4/week, so I haven't worried about other people's addresses that I entrusted to this method. Should I? – Kev Jan 27 '09 at 13:46
For sure, it may exclude lots of crawlers, but me, if I created an address crawler, I would implement a JavaScript lib :) – guerda Jan 28 '09 at 14:17
more effort than you might think – Charlie Somerville Jun 13 '09 at 12:03
Google is crawling through some JS now. – Alister Bulman Jun 13 '09 at 12:38
If google is only doing some... – ccook Dec 10 '09 at 13:49

Does it work if I right-click on the link and choose "copy URL"? If not, it's very much not an ideal situation (I very seldom click on a mailto link, preferring to copy the email address and paste it into my mail application or wherever else I need it at a specific point in time).

I used to be fairly paranoid protecting my mail address on-line (UseNet, web and the like), but these days I suspect more "possible targets for spam" are actually generated matching local-parts to domains programmatically. I base this on having, on occasion, gone through my mail server logs. There tends to be quite a few delivery attempts to non-existing addresses (including truncated versions of spam-bait I dangled on UseNet back in the late 90s, when address-scraping was very prevalent).

share|improve this answer

You can try to hide characters using html entities in hexa (ex: &#x40 for @). This is convenient solution, as a correct browser will translate it, and you can have a normal link. The drawback is that a bot can translate it theorically, but it's a bit unusual. I use this to protect my e-mail on my blog.

Another solution is to use javascript to assemble part of the address and to decode on-the-fly the address. The drawback is that a javascript-disabled browser won't show your adress.

The most effective solution is to use an image, but it's a pain for the user to have to copy the address by hand.

Your solution is pretty good, as you only add a drawback (writing manually the @) only for user that have javascript disabled. You can also be more secure with :

onclick="this.href='mailto:' + 'admin' + '&#x40;' + 'domain.com'"
share|improve this answer

there is a webpage, www.emailhide.org, that encrypts your email address in a secure manner. All you nedd to do is type in your email address and is returned html code with a link with your encrypted email. I've tried and now i use it everytime. There's also a automatic gen for webmasters. Check it out.

share|improve this answer
7  
Hmm, the page works but typing in my email-address on a random web page does NOT sound like protecting it. Bet they have a huge list of addresses themself :P – Orange Feb 1 '09 at 13:16
1  
I'd like to upvote comments :P – Andrea Ambu Feb 1 '09 at 13:54

I recommend you to use e-mail protection services like protectmy.info and others (don't remember their names, but they are, I'm sure). It's much easier.

share|improve this answer

I am a fan of SpamSpan - it is obfuscated, but still decipherable if JS is disabled. It seems to work too, although I've only been using it for about a year on a low-traffic website.

There is also a module for Drupal to automatically turn emails into SpamSpans, if you need one.

share|improve this answer

Here is a simple jquery solution to this problem:

<script type="text/javascript">
$(document).ready(function() {
    str1="mailto:";
    str2="info";
    str3="@test.com";
    $("#email_a").attr("href", str1+str2+str3);

});
</script>

<a href="#" id="email_a"><img src="sample.png"/></a>
share|improve this answer

I like ofaurax's answer best but I would modify to this for a little more hidden email:

onclick="p1='admin'; p2='domain.com'; this.href='mailto:' + p1 + '& #x40;' + p2"
share|improve this answer

First I would make sure the email address only shows when you have javascript enabled. This way, there is no plain text that can be read without javascript.

Secondly, A way of implementing a safe feature is by staying away from the <button> tag. This tag needs a text insert between the tags, which makes it computer-readable. Instead try the <input type="button"> with a javascript handler for an onClick. Then use all of the techniques mentioned by otherse to implement a safe email notation.

One other option is to have a button with "Click to see emailaddress". Once clicked this changes into a coded email (the characters in HTML codes). On another click this redirects to the 'mailto:email' function

An uncoded version of the last idea, with selectable and non-selectable email addresses:

<html>
<body>
<script type="text/javascript">
      e1="@domain";
      e2="me";
      e3=".extension";
email_link="mailto:"+e2+e1+e3;
</script>
<input type="text" onClick="this.onClick=window.open(email_link);" value="Click for mail"/>
<input type="text" onClick="this.value=email;" value="Click for mail-address"/>
<input type="button" onClick="this.onClick=window.open(email_link);" value="Click for mail"/>
<input type="button" onClick="this.value=email;" value="Click for mail-address"/>
</body></html>

See if this is something you would want and combine it with others' ideas. You can never be too sure.

share|improve this answer
1  
oh look - me@domain.extension - there's the plain text email address. – Alister Bulman Jun 13 '09 at 12:39

after using so many techniques i found an easy way and very friendly, the bots search for @ Símbolo and recently they search for [at] ant it's variation so i use 2 techniques

  1. i write my email on an image like the domaintolls use and it works perfectly or
  2. to replace the Símbolo (@) with an image of it like

@ replace and the image alt will be alt="@" so the bot will find an image and any human will see it as a normal address so if he copy it he will copy the email and the job is don so the code will be

<p>myname<img src="http://www.traidnt.net/vb/images/mail2.gif" width="11" height="9" alt="@" />domain.com</p>
share|improve this answer

There is a open licence PHP script that outputs javascript which encodes the mail: http://www.maurits.vdschee.nl/php_hide_email/. You can then easily call the php function with the specific mail as an argument.

share|improve this answer

i have such option too:

joe  gmail.com <span style="position:relative;left:-20px;z-index:11">@</span>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.