Domain Name Registrations, Web Forms, Email Newsletters & Your Website
Avoid giving your main email address, as it can leads to shower of emails from spammers.
Use Javascript to Mask Email Addresses in your site's Contact page.
Code:
<html>
<head>
<title> Contact Us </title>
</head>
<body>
<script language=javascript>
<!--
var username = "captainoca.gsm";
var hostname = "gmail.com";
var linktext = username + "@" + hostname;
document.write("<a href=" + "mail" + "to:" + username +
"@" + hostname + ">" + linktext + "</a>")
//-->
</script>
</body>
</html>