![]() |
|
Email Comments, Questions and Miscellaneous Share your opinion of the email service you're using. Post general email questions and discussions that don't fit elsewhere. |
![]() |
|
Thread Tools |
![]() |
#1 |
Junior Member
Join Date: May 2006
Posts: 7
|
how do I disguise my email from harvesters?
Hi
Can you tell me how to simply disguise my email addresses in this form from harvesting ? Thanks Art <input type="hidden" name="recipient" value="as@domain.com,info@proscan.com"> <input type="hidden" name="redirect" value="http://www.proscan-uk.com/thankyou.htm"> |
![]() |
![]() |
![]() |
#2 |
Essential Contributor
Join Date: Sep 2006
Location: Ellicott City, MD, USA
Posts: 206
Representative of:
ControlledMail.com |
I use javascript for this:
<script language="Javascript"> <!-- document.write('<a href="mailto:localpart'); document.write('@'); document.write('example.com">Text'); document.write('</a>'); //--> </script> This generates the html: <a href="mailto:localpart@example.com">Text So far this seems to keep my addresses from being scraped. |
![]() |
![]() |
![]() |
#3 |
Master of the @
Join Date: Aug 2004
Location: Madrid, Spain
Posts: 1,344
|
You can also use an utility like Email Obfuscator. Try it at http://alicorna.com/obfuscator.html
|
![]() |
![]() |
![]() |
#4 |
Junior Member
Join Date: May 2006
Posts: 7
|
<script language="Javascript">
<!-- document.write('<a href="mailto:localpart'); document.write('@'); document.write('example.com">Text'); document.write('</a>'); //--> Re this code, how do I amend it to cover 2 email addresses? address1@com and address2.com |
![]() |
![]() |