up vote 44 down vote favorite
26
share [g+] share [fb]

I've spent the past few days working on updating my personal website. The URL of my personal website is (my first name).(my last name).com, as my last name is rather unusual, and I was lucky enough to pick up the domain name. My e-mail address is (my first name)@(my last name).com. So really, when it comes down to guessing it, it's not very hard.

Anyways, I want to integrate a mailto: link into my website, so people can contact me. And, despite my e-mail address not being very hard to guess, I'd rather not have it harvested by spam bots that just crawl websites for e-mail address patterns and add them to their database.

What is the best way for me to obfuscate my e-mail address, preferably in link form? The methods I know of are:

<a href="mailto:x@y.com">e-mail me</a>

It works, but it also means that as soon as my website hits Google, I'll be wading through spam as spam bots easily pick out my e-mail address.

<img src="images/e-mail.png" />

This is less desirable, because not only will visitors be unable to click on it to send me an e-mail, but smarter spam bots will probably be able to detect the characters that the image contains.

I know that there is probably no perfect solution, but I was just wondering what everyone thought was best. I'm definitely willing to use JavaScript if necessary, as my website already makes use of tons of it.

Thanks in advance!

link|improve this question

5  
Forward the message to your GMail account. ;-) – Dave Jarvis Apr 30 '10 at 0:01
feedback

18 Answers

up vote 33 down vote accepted

I encode the characters as HTML entities (something like this). It doesn't require JS to be enabled and seems to have stopped most of the spam. I suppose a smart bot might still harvest it, but I haven't had any problems.

link|improve this answer
I've used this method in the past, but it was dead simple for me to get around it (for parsing my own documents in some cases) so I can't imagine it would be any less so for a bot. – eyelidlessness Apr 14 '09 at 19:16
2  
This stops the simplest sort of spambot harvesting (regex looking for any text that resembles and e-mail address), and has no downside: it is just as convenient for the end user as the explict href=mailto:xxx@yy link. – Stephen C. Steel Apr 14 '09 at 19:35
1  
I've used this method before and it seems to work pretty well. It's about the only method I could find that works in Lynx/w3m too.. – dbr Apr 14 '09 at 20:05
2  
This works pretty well because many (most?) of the crawlers/harvesters are incredibly stupid. – Jacco Apr 14 '09 at 22:06
This will work well until the stupid harvesters read this thread and update ;) – Jon Hadley May 23 '11 at 13:08
feedback

The current accepted solution is to create a contact form that allows users to email you. If you receive a lot of spam from that (I don't on my site), then you can add a captcha for good measure, and you'll be far from the "low hanging fruit" at that point.

The fact of the matter is that if you are providing a link that a user can click on to pop open their email client with your address in the To: field, then the computer is able to decipher the email address from the page and so can a spam bot.

link|improve this answer
1  
That is to say, the logic to send the email should be written in hidden server-side code so that the address is never made public. – JoshJordan Apr 14 '09 at 18:30
+1 nice and simple, but sometimes people perfer to see an address. – Dead account Apr 14 '09 at 18:34
4  
While it's a fine solution, technically, it's a solution that's offputting to many users. Just sayin'. – eyelidlessness Apr 14 '09 at 19:14
7  
I always like it when there's an option to CC you the message. The one thing that bothers me about contact forms is that it leaves no record in my own email system. (Although a form that CCs any email address can create it's own set of problems.) – Sam Hasler Apr 14 '09 at 21:29
3  
There's also no indication that the email form actually worked. I've seen too many that were silently broken. Real emails bounce, at least. – Brian Carper Apr 14 '09 at 22:24
show 4 more comments
feedback

Personally, I've given up on hiding my email address. I find it easier to look into better spam-filtering solutions than worry about obfuscating. You could spend days trying to find the best way to obfuscate your address, and then all it takes is one person to sell your address to a spammer and all that work was useless.

link|improve this answer
2  
+1. Yep, who doesn't filter spam anyway? – Dead account Apr 14 '09 at 18:35
No matter how good your spam filtering is there are going to be false negatives (mails that get through that shouldn't). Ultimately you have to live with the e-mail address, but it seems like this kind of unnecessary exposure would increase the recurrence of spam getting through. – Brad Barker Apr 14 '09 at 18:38
3  
@Brad in my experience this has not been the case. I use Google hosted mail for my domains and my email address is extremely easy to find. I have had 0 false negatives and 1 false positive since I started using it more than 14 months ago. I get several hundred spams a day in my spam folder. – Rex M Apr 14 '09 at 18:53
2  
Er, I should add: spam isn't a boogeyman that's going to eat your children. Getting an odd spam email isn't the end of the world. Click "report spam" and move on. – eyelidlessness Apr 14 '09 at 19:15
1  
@Brad: If it's unnecessary, don't give your address out at all. If it is necessary to give your address out, get ready for spam. You can't make it easy for a human to email you without also making it easy for a spambot to do it. – Chuck Apr 14 '09 at 21:57
show 3 more comments
feedback

reCAPTCHA offers a simple email obfuscation service. You don't need to set up an account and can start using it immediately. You can use the service as a link or as a popup.

After the captcha is solved, your email address appears as an href/mailto, so that it can be clicked/followed by users who have configured their email clients to work with their browsers.

link|improve this answer
This is a great solution. – JoshJordan Apr 14 '09 at 20:10
this is great and will work 99.9% of the time. Thanks for the link to. It will fail when bot is automating a browser. – IEnumerator Apr 15 '09 at 2:13
3  
I don't think the majority of web users will go to the effort of solving a captcha just to email someone. – AndyM Feb 5 '10 at 9:04
1  
I am with Andy on this. CAPTCHA are a pain, and reCAPTCHA are an even bigger pain than average as they are often too hard to read. If people emailing you is a conversion point (for instance, allowing customers to inquire about services, order or ask a quote), you really want to make it as easy as possible for them to do so. – Sylverdrag Jul 26 '10 at 6:19
feedback

You mentioned this is for your personal website. On my personal site (for example, bobsomers.com) I just have a paragraph that says this:

The best way to get in contact with me before the new site is up is to send me an email. My email address is my first name at this website. If you can't figure it out from that hint, well, you might find email more of a challenge than figuring out my address.

People seem to be able to figure that out just fine, as I get legitimate email all the time. Sometimes the best solutions don't require writing any code. :)

link|improve this answer
+1 it's captcha, alright :P – Lucas Apr 15 '09 at 3:53
feedback

Apparently using CSS to change the direction of your text works pretty well. That link has a test of a bunch of other obfuscation methods as well.

Whatever you use is inevitably going to be defeated. Your primary aim should be to avoid annoying the heck out of your users.

link|improve this answer
This stuffs up copy and paste maybe ? IIRC – alex Dec 24 '09 at 1:34
When the address is copy-pasted, it will show up backwards. This could be off-putting for users, if you want it to be as easy as possible to contact you. – Christian Davén Feb 4 '10 at 13:35
feedback

Don't use any obfuscation techniques here because it's probably the first place the email harvesters will look to find out how people are obfuscating emails. If you have to have your email address visible on the site don't just copy verbatim someone else's method; obfuscate it in some unique way that no other site has used so that your method won't be known to harvesters before they visit your site.

link|improve this answer
How very recursive. – Paul Tomblin Apr 14 '09 at 18:29
xD I'm assuming you meant Codebrain's answer? – takua108 Apr 14 '09 at 18:30
Unniloct: Sam Hasler's anwswer applies regardless of what the top answer is. By going with the most popular obfuscation technique, you are going with the most likely target of harvesting. – eyelidlessness Apr 14 '09 at 19:21
Unless the top answer is to not actually use obfuscation :) – JoshJordan Apr 14 '09 at 19:42
1  
Currently this page is the 28th result returned by google for [obfuscate e-mail address], although I expect it will rise higher eventually. – Sam Hasler Apr 14 '09 at 21:32
show 1 more comment
feedback

One website I maintain uses a somewhat simplistic JavaScript means of (hopefully) keeping spambots out.

Email links call a JS function:

function sendEmail(name, domain) {
    location.href = 'mailto:' + name + '@' + domain;
}

To make sure only users who have JS enabled can see the link, write them out with this:

function writeEmailLink(realName, name, domain) {
    document.write('<a href="javascript:sendEmail(\''
      + name + '\', \'' + domain + '\')">');
    document.write(realName);
    document.write('</a>');
}   

The use of one JS function to write out a link that calls another means that there are two layers of protection.

link|improve this answer
feedback

You could do as Google do on Google Code (and Groups). Display a par tof the email, and a clickable portion ("..."). Clicking that indicates you want to know the email, and you are asked to fill in a captcha. Afterwards the email (and others?) are visible to you.

link|improve this answer
2  
+1 because now i know how to use google groups – TokenMacGuy Apr 15 '09 at 2:05
feedback

I don't how well this would work. Could you not leave your email address out and make it load using an AJAX call once the page has finished loading. Not sure if spam bots can pick up the altered HTML or if they are clever enough to listen on other HTTP traffic to try and pick email addresses or if they just scan the page as it is received the first time.

link|improve this answer
feedback

I use JavaScript obfuscation, take a look at this one for example:

http://www.jottings.com/obfuscator/

link|improve this answer
-1: Have you looked at the code it generates? It does not actually obfuscate your email address if you include it in the "link text", and belies its purpose with "mailto:". Worse, it's a solution that requires Javascript, which should not be relied upon for basic content. – eyelidlessness Apr 14 '09 at 19:19
feedback

Honestly, your problem may be moot if you asked the question of whether or not a mailto is really what you want to use. A lot of people who use web mail, for example, or do not have the proper mail client setup in their browser are not going to benefit from a mailto. You are exposing your email address for a function that isn't going to work for a large portion of your users.

What you could do instead is use a form to send the e-mail behind the scenes so that the e-mail address is hidden and you don't have to worry about the poor saps who won't benefit from a mailto.

link|improve this answer
Although that poses the question of ... how to stop robots spamming the form, which will lead back to a captcha. – Sohnee Apr 15 '09 at 10:51
feedback

I use a different approach, and so far has worked for me. My solution is written in PHP and JavaScript, but should to be able to ported to any other server language or plain JS. I use this regex to capture user inputted emails from my CMS

$regex = '/\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}\b/i';

I then run the result through this function

function stopEmailHarvesting($match) {
    $find = array('.', '@');
    $replace = array(' dot ', ' at ');
    $match = str_replace($find, $replace, $match);
    return '<span class="obfuscate-email">' . $match . '</span>';
}

This renders an email as alex at domain dot com dot au.

Now, to tidy up things, I run this jQuery function on DOM ready.

var emailLinks = {
    init: function() {
    	$('.obfuscate-email').each(function() {				
    	    var email = $(this).text();
    	    email = email.replace(/ at /, '@');
    	    email = email.replace(/ dot /g, '.');
    	    $(this).replaceWith('<a href="mailto:' + email  + '" title="Email \'' + email + '\'">' + email + '</a>');								
    	});
    }
}

This then renders the email as it should, and so far no spam has came through. Mind you, my sites are not terribly popular, but I think this is a decent solution. Don't forget to include a good spam filter on your email, just in case.

link|improve this answer
This seems like a particularly easy solution for bots to get around, particularly because you're indicating right there in the source code that you've obfuscated the email address, and the obfuscation is done in plain english. – eyelidlessness Apr 15 '09 at 20:57
@eyelidlessness, I realise this, it could easily be circumvented by a bot that knew what it was looking for, but I am hoping that noone stumbles on any of my small business sites and says "I want to scrape all emails in the future from this page." Maybe I should add some extra characters in... – alex Apr 15 '09 at 23:02
...around the at and dot strings. Would a bot actually look for class names with the word obfuscate in them ? – alex Apr 15 '09 at 23:02
1  
Personally if I were using a method like this, I would probably generate a one-time random string to inject into the address after converting @ and . to at and dot, then remove that string as well. Yes, I imagine that smarter bots will look for "obfuscate" and "email", and especially "at" and "dot". – eyelidlessness Apr 16 '09 at 2:36
That's a pretty good idea, will look at implementing this in the future. Thanks for the edit on my post too! – alex Apr 16 '09 at 2:56
show 2 more comments
feedback

If you work with PHP, you can grab a free script that does that automatically. It's called "Private Daddy" and we use it for our own online audio streaming service. Just one line of code and it works out of the box... you can grab it here

Cheers,

Reuven

link|improve this answer
feedback

If you say on your site that "My e-mail address is (my first name)@(my last name).com.", and your first name and last name are pretty darn obvious, that seems to be the best spam protection you're going to get.

link|improve this answer
aren't parentheses actually allowed in full-fledged emails? seems like that could be a valid email address. :p – Tchalvak Dec 23 '09 at 15:37
1  
Which is another reason spam bots will miss your inbox. :-) – Dean J Jan 4 '10 at 15:10
feedback

Check this out.

The 'Enkoder Form' will encrypt your Email address and convert the result to a self evaluating JavaScript, hiding it from Email-harvesting robots which crawl the web looking for exposed addresses. Your address will be displayed correctly by web-browsers, but will be virtually indecipherable to Email harvesting robots.

link|improve this answer
feedback

One guy tested nine different ways of presenting an email address on a page and then published results on his blog.

His three best ways were:

  1. Changing the code direction with CSS
  2. Using CSS display:none
  3. ROT13 Encryption

Caveat -- this was posted two years ago. Spam bots might've gotten smarter.

link|improve this answer
feedback

I use a PHP function to generate some javascript to output the email on page load. Note that you don't need PHP to generate the JS at runtime, you can generate the JS once locally and then include the static JS in your page.

You can also use the linked function with this snippet below to automatically obfuscate email addresses in some given HTML (where $processedContent is the HTML):

 $emailMatches = array();
 $matchCount = preg_match_all('/(?:[a-zA-Z0-9_\.\-])+\@(?:(?:[a-zA-Z0-9\-])+\.)+(?:[a-zA-Z0-9]{2,4})+/', $processedContent, $emailMatches);

 if($matchCount > 0) {
    $emailMatches = $emailMatches[0];

    foreach($emailMatches as $email) {
    $replacement = createJSMailLink($email);

    $processedContent = str_replace($email, createJSMailLink($email), $processedContent);
 }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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