I noticed many websites that have their email address in full on the web page and thus easy for a spider to read it and spam. I use this little script. Just change the obvious bits and place it where you want the "Click to email" link. Copy and paste onto the HTML of your web page.
<script language=javascript>
<!--
var ppclink = "Click here to Email ";
var ppcname = "yourname";
var ppchost = "yourISP";
document.write("<a href=" + "mail" + "to:" + ppcname + "@" + ppchost + ">" + ppclink + "</a>")
//-->
</script>
Result as above is :-
"Click here to Email" which gives "<ahref=mailto:yourname@yourISP</a>"
<script language=javascript>
<!--
var ppclink = "Click here to Email ";
var ppcname = "yourname";
var ppchost = "yourISP";
document.write("<a href=" + "mail" + "to:" + ppcname + "@" + ppchost + ">" + ppclink + "</a>")
//-->
</script>
Result as above is :-
"Click here to Email" which gives "<ahref=mailto:yourname@yourISP</a>"
Comment