If you want to put an email contact on your web site, but also want to avoid spammers, you can use JavaScript. Here's the code. Copy it into the body of your contact web page, then change the name and site.
<html>
<head>
<title>How to protect your email address</title>
</head>
<body>
<script type='text/javascript'>
e = 'name' + '@' + 'site.com';
document.write( "<a href='mailto:" + e + "'>" + e + '</a>' );
</script>
<noscript>Please turn on JavaScript!</noscript>
</body>
</html>