Forum Moderators: mack
I just uploaded my new site and wanted to list my (new) email address on it for prospective employers (it has my portfolio on it).
Is there a way to list my email address without spiders or whatever to add my address to spam lists? I assume that not adding a <mailto:""> would help.
How about adding spaces like
name @ example.com
instead of name@example.com
Thanks, everyone!
This is a popular subject. Here some recent threads that covered this:
[webmasterworld.com...]
[webmasterworld.com...]
[webmasterworld.com...]
<script language="JavaScript">
document.write('<a href="mailto:sales' + '@' + 'domain.com">' + 'sales' + '@' + 'domain.com</a>');
</script>
Re-reposted from:
[webmasterworld.com...]
You could script something for this purpose in Php, Perl etc. There are also lots of free scripts to do this for you. try a search for "feedback form script" or something similar. Many of these scripts will be free.
Mack.
I use it on my sites, and haven't been spammed yet, whereas the older email addresses I used before scrambling them get tons of spam every day.
Cheers
Dave
If the browser can decrypt the email address, couldn't the spambot?
Couldn't a spambot put together AT as being a replacement for @?
The form is the best solution I've found. Just be sure you don't use one where you have to set the "to" address into the HTML for the form. That defeats the whole purpose.
In todays hostile internet everyone in my house surfs with IE on high security and that prohibits java. So there is a percentage that cannot contact you due to this.
The solution?
A form. A form that leads to a script that is secure and has your email address in the code and not on the page. (spammers will extract it, even if it is not visible, as long as it is on the page, even in form fields it will be gotten to.).
I took an old formail.pl and modified it to hard code my email address into it. (to prevent formmail abuse).
It is not hard, just use a text editor, look for the mailer routine, replace the To: variable with your email address. Do it in this format name/@mydomain.com Don't forget the slash. Test it if it don;t work reverse the slash (cause I am not sure which way to lean the slash /\)
You will be all set. No spam, everyone can contact you and no need for java.