Link to home
Start Free TrialLog in
Avatar of StuartOrd
StuartOrdFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Spam fritters

Hi experts,

This isn't perhaps a normal question so there's no "best" forum to put it in, so let's see what you guys here think.

I'm fed up with hoax E-mails telling me to go to my bank website, go to Paypal, or telling me they've deducted money from my credit card and I have to follow their link to get it back, etc, etc., plus offers to buy shares, offers to buy items you've got for sale if they send a big cheque and you return the difference to them, etc; you know the sort of rubbish I mean.

They all come from short-lived E-mail addresses and are probably sent automatically. It's a penalty from having my E-mail address on my web site.

I sometimes send them a rude reply, but one is going to make no difference.

Now....
Do you know of any program that will send the same reply to them let's say 1000 times, maybe with my E-mail address removed? Maybe enough people doing that might discourage them.

Thanks, Stuart
SOLUTION
Avatar of r-k
r-k

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of StuartOrd

ASKER

Thanks guys. I knew there had to be a snag. My last "complaint" has indeed returned, unknown recipient, but not all seem to return.
I'll try your suggestions.
Meantime, please someone figure a way to shut down these people...
in fact, *if* the response actually gets to the spammer, you have then verified to him that your address is a working, valid address - which he can then continue to use, and sell to other spammers!
Avatar of Slym
Slym

I know this question is already closed, but this might help for your website to prevent spambots.  Instead of the mailto link in your website, use this script in the code of your page where you want the email address to appear:

<!-- // Javascript Email Address Encoder
//  by www.stevedawson.com

      var first = 'ma';
      var second = 'il';
      var third = 'to:';
      var address = 'user';
      var domain = 'domain';
      var ext = 'com';              
      document.write('<a href="');
      document.write(first+second+third);
      document.write(address);
      document.write('&#64;');
      document.write(domain);
      document.write('.');
      document.write(ext);  
      document.write('">');
      document.write('name to appear on web page');
// -->

Replace the items in these lines to fit your email address:
      var address = 'user';
      var domain = 'domain';
      var ext = 'com';              

and the last line - replace with your name, not your email address.  Or you can put an image there.

The author also has a page where you can plug in your info to create the code to copy and paste:

http://www.stevedawson.com/emailencode.php