The Email Riddler just uses an array of decimal ASCII values. You can make these into whatever you want; they needn't be an email address. For example, you@yourdomain.com would be:
121 (y), 111 (o), 117 (u), 64 (@), 121 (y), 111 (o), 117 (u), 114 (r), 100 (d), 111 (o), 109 (m), 97 (a), 105 (i), 110 (n), 46 (.), 99 (c), 111 (o), 109 (m).
Ergo, the array would be:
Code:
new Array(121,111,117,64,121,111,117,114,100,111,109,97,105,110,46,99,111,109)
You can use the following bookmarklet to translate a string to this array. Simply copy and paste the below code into your address bar and hit enter.
Code:
javascript:(function(){var s=window.prompt("Enter text:"),p="new Array(";if(s){for(i=0;i<s.length;i++)p+=s.charCodeAt(i)+(i+1 < s.length?",":"");p+=")";v=window.open();v.document.open();v.document.write(p);v.document.close();}})();
Replace the new Array(blah,blah,blah) in your Email Riddler code with the result, and obviously remove the mailto: from the link.
Bookmarks