hiding email addresses

Ask a Question related to Macromedia Dreamweaver, Design and Development.

  1. #1

    Default hiding email addresses

    Could you tell me how to avoid having automated programs pick up the email addresses on your website so we avoid receiving so much junkmail?

    Thanks!


    kplow webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Email to different addresses
      Hi, I am designing a site for a company with dealers in different countries. For each product I have a 'request info' form with name, address,...
    2. Hiding E-mail Addresses
      Sign up with MailButton.com
    3. collecting email addresses
      hi. I have a preview site up for my flash site that I am still building, but im wondering how to set up the preview so that people can enter their...
    4. What is the best way to send an email to ALL addresses in a dbase?
      I have an access 2002 dbase that contains a contact table. It is about 200 records and grows everyday. How could I send an email to ALL contacts at...
  3. #2

    Default Re: hiding email addresses

    use a form/serverscript for users to send mail.

    joe



    "kplow" <webforumsuser@macromedia.com> wrote in message
    news:bg3bm3$12r$1@forums.macromedia.com...
    > Could you tell me how to avoid having automated programs pick up the email
    addresses on your website so we avoid receiving so much junkmail?
    >
    > Thanks!
    >
    >

    Joe {RoastHorse} Guest

  4. #3

    Default Re: hiding email addresses

    On 28 Jul 2003 in macromedia.dreamweaver, wrote:
    > Could you tell me how to avoid having automated programs pick up the
    > email addresses on your website so we avoid receiving so much
    > junkmail?
    The best, and only absolutely reliable way, is never to post them. If
    you choose this option, you need some kind of server-side scripting (php,
    asp(.net), cgi/perl) where you can either hard-code the addresses, or
    pull them from a database.

    Next best is to insert the address using client-side scripting
    (javascript). Most harvester bots have js turned off, so putting the
    address, broken into parts, into an external javascript should keep them
    safe.

    Or you can try the trick of changing part or all of the address into
    character entities (@ = &#65;, so me&#65;myisp.invalid). There are
    scripts out there which will return a string of character entities when
    you input a text string.

    For an interesting perspective on this, see:

    [url]http://www.cdt.org/speech/spam/030319spamreport.shtml[/url]

    --
    Joe Makowiec can be reached at:
    [url]http://makowiec.org/contact/?Joe[/url]
    Joe Makowiec Guest

Posting Permissions

  • You may not post new threads
  • You may 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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139