i have some email addresses in a web site of a client.
Can you tell me what are the best ways to somehow hide the email addresses
from the SpamBots.
Can you give the a list of:
1. What To Do
2. What Not To Do
Thanks,
MiguelHello -
here is a good article on some of the ways...
http://www.netmechanic.com/news/vol4/design_no21.htm
good luck
take care
tony
I am sure this will depend on your technical requirements...however I find it best to not display the email address at all. Providing a simple form that allows the user to send a quick email to the contact has worked for me in the past, for most situations.
Hi,
another link for such a custom control could be:NoSpamEmailHyperlink.
Grz, Kris.
I tend to just use JavaScript.
Try this:
<script language=javascript>
<!--
var link = "e-mail sales";
var tag1 = "mail";
var tag2 = "to:";
var email1 = "sales";
var email2 = "domain";
var email3 = ".com";
var subject = "";
var cc = "";
var bcc = "";
var body = "";
document.write("<a h" + "ref=" + tag1 + tag2 + email1 + "@." + email2 + email3 + ">" + link + "</a>")
//-->
</script>
One more control recommendation (from the King of .NET Email, Dave Wanta):
EmailSpoofer.NET
Hi Peter,
Thanks of that great link.. I didn't know about that one.. :)
cheers!
Hi Peter,
Thanks for that great link.. I didn't know about that one.. :)
cheers!
0 comments:
Post a Comment