I would like to hide my email ( mailto: ) address used in the xml file. Below is the typical format I currently use. (please note I used [at] instead of @ in the example below)
mailto:me[at]addr.com,you[at]another.com?cc=someone[at]else.com&bcc=somebody[at]differnent.com&subject=test&body=type+your&body=me ssage+here
- It would send an email to "me" and "you"
- It would cc "someone"
- It would bcc "somebody"
- Subject contains "test"
- Body would read:
type your
message here
My concern is that harvesters will pick up the email addresses using this method. I do have a Javascript solution but can't get it to work in the XML file so I assume javascript is not supported in XML.
<script type="text/javascript">
/*<![CDATA[*/
<!-- Encrypted version of: info [at] ************.*** //-->
var emailriddlerarray=[105,110,102,111,64,118,101,105,110,99,101,110,116, 101,114,110,104,46,99,111,109]
var encryptedemail_id60='' //variable to contain encrypted email
for (var i=0; i<emailriddlerarray.length; i++)
encryptedemail_id60+=String.fromCharCode(emailridd lerarray[i])
document.write('<a href="mailto:'+encryptedemail_id60+'">E-mail Us</a>')
/*]]>*/
</script>
Is there a solution for this?
Thanks for the help.