I am currently implementing the "How do I protect my email address from spammers?" script from the knowledgebase. Am I correct in assuming that I need to leave the "click to email us" test as it is and cannot change it to the actual email address I am trying to protect. If correct is there a way of displaying the email address safely so that it is readable rather than displaying "click to email us" or similar.
Edit: I assume I could you an image of the email address in some way.
P.S On a similar note, when launching my v7 site last year I incorporated the NMS FormMail script on a "Price Match" form, I will shortly be relaunching the site redesigned in V9, is NMA FormMail still considered a good choice of script of the form or is it now old hat and is the built in Actinic "Contact Us" script in V9 considered more or less secure in respect to use by spammers.
<script type=text/javascript>
var _u = "sales";
var _d = "domain.co.uk";
var _l = _u + "@" + _d;
var _m = "click to email us";
document.write("<a href='mailto:"+_l+"'>"+_m+"</a>");
</script>
var _u = "sales";
var _d = "domain.co.uk";
var _l = _u + "@" + _d;
var _m = "click to email us";
document.write("<a href='mailto:"+_l+"'>"+_m+"</a>");
</script>
Edit: I assume I could you an image of the email address in some way.
P.S On a similar note, when launching my v7 site last year I incorporated the NMS FormMail script on a "Price Match" form, I will shortly be relaunching the site redesigned in V9, is NMA FormMail still considered a good choice of script of the form or is it now old hat and is the built in Actinic "Contact Us" script in V9 considered more or less secure in respect to use by spammers.
Comment