You can do it with javascript
:
Code:
<script type="text/javascript">
var y = "contact"
var z = "example.com"
document.write("<a href=\"mailto:" + y + "@" + z + "\">" + y + "@" + z + "<\/a>")
</script>
If you want to make it trickier, break up the domain into more than one variable.