Protect your email address placed at a web-page
Bad guys scan the web in looking for email addresses for their spam bases.
Their bot-scripts can detect your email address when you place it
Now what? Do you give the email address to your visitors?
You can protect your address at your web-pages.
In the previous post we used unicode encoding to cloak a Return URL of your order form. The same encoding will help us to protect email address from most of scanning scripts.
The simplest way to detect an email address is to scan a page on the <a href="mailto:...">
<a href="mailto:...">
Web-browsers understand this encoding and would show this as a regular link to email. And when you place a code like this:
<a href="mailto:mi
chel@icoder
.com" > michel
@icoder.com
</a>
You’ll get a regular email-link:
Now the form to encode your email.
Email-encoding Generating Form
Related Articles:






