Protecting Email Address From Spam Robots
Instead of displaying the usual mailto:email@domainname.com email link within web page, we can use the following code within your HTML:
<A HREF=”mailto:email@domainname.com”>Contact Us</A>
When email link is clicked on, it will display correct email address.
If we are displaying our email address on our web site, we may be unknowingly setting ourself to receive spam emails. Unfortunately, spam robots are continuously crawling the Internet in search of email addresses they can use to not only send spam, but also sell to other spammers. To protect from receiving spam email, we can dispaly email addresses in above manner.
