+ Reply to Thread
Results 1 to 6 of 6

Thread: Spam proof email script
      
   

  1. #1
    henry barnett is offline Private
    Join Date
    Jan 2009
    Posts
    2

    Default Spam proof email script

    I noticed many websites that have their email address in full on the web page and thus easy for a spider to read it and spam. I use this little script. Just change the obvious bits and place it where you want the "Click to email" link. Copy and paste onto the HTML of your web page.

    <script language=javascript>
    <!--
    var ppclink = "Click here to Email ";
    var ppcname = "yourname";
    var ppchost = "yourISP";
    document.write("<a href=" + "mail" + "to:" + ppcname + "@" + ppchost + ">" + ppclink + "</a>")
    //-->
    </script>


    Result as above is :-

    "Click here to Email" which gives "<ahref=mailto:yourname@yourISP</a>"

  2. #2
    Join Date
    Mar 2006
    Location
    Mallorca, Spain
    Posts
    6,313

    Default Re: Spam proof email script

    Nice script, but that puts the onus on the visitors email client.
    Its better to have a contact page or if you must use just an email address
    convert the text to an image(just 1 click) and link the image.

  3. #3
    henry barnett is offline Private
    Join Date
    Jan 2009
    Posts
    2

    Default Re: Spam proof email script

    David,

    That's true but I hate forms as invariably you have no record of what you've sent and often the form includes must-fill in nonsense! Forcing the use of the client's own email client at least gives him something he knows how to work with and keeps a copy on his computer. A linked image is also OK but again it's harder to create an image than enter a bit of script. Let's say we've given a wider choice.

    Henry

  4. #4
    Join Date
    Mar 2006
    Location
    Mallorca, Spain
    Posts
    6,313

    Default Re: Spam proof email script

    I totally agree with wider choices, so BV has a quick method of converting Text to an image with one click................and as I originally said....nice script...lol

  5. #5
    Join Date
    Feb 2006
    Location
    Kings Lynn, Norfolk (UK)
    Posts
    8,719

    Default Re: Spam proof email script

    Nice idea! But i think it was mentioned on this forum somewhere that these type of links wont open in many peoples work places because have there own internal mail servers. So you actually either need the written email address or use a web form that works on the actual site that you are using.

  6. #6
    Watdaflip's Avatar
    Watdaflip is offline Major General
    Join Date
    Sep 2005
    Location
    Cincinnati, Ohio
    Posts
    2,119

    Default Re: Spam proof email script

    The title is a little misleading. It's more spam resistant, as the script isn't going to prevent all harvesters from getting ahold of the email address. A bad one will just read source, where this won't show up, but if a harvester is reading DOM is will pick this up in plain text.

    Register/Login Script
    Do you use a Password Protected Directory? Need a way to allow users to make their own account, try my .htaccess Login Script

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49