Two ways that have been pretty successful for me.
1. javascript
:
Code:
<script language="JavaScript" type="text/javascript">
<!--
var string1 = "info";
var string2 = "@";
var string3 = "yourdomainname.com";
var string4 = string1 + string2 + string3;
document.write("<a href=" + "mail" + "to:" + string1 +
string2 + string3 + ">" + string4 + "</a>");
//-->
</script>
***Changing the "info" to whatever email address you are using.
2. Use a contact form instead of an email address. Add an addition problem with a confirmed answer to the bottom of the form:
To help us reduce spam, please answer the following question:
10 + 5 = ___ Please confirm your answer ____
Your hidden input field would look something like:
<input type="hidden" name="required" value="math1:math answer=math2:confirmed answer">
Your form field something like this:
<input name="math1" class="textInput" type="text" id="math1" size="3" maxlength="2"> Please confirm your answer: <input name="math2" class="textInput" type="text" id="math2" size="3" maxlength="2">
I've tried Captcha many times without success, but the addition problem works well.
SPAM STINKS!!!
