How to Hide Your EMAIL Address from Webspiders

JavaScript revised: Sept. 21, 2000 to accomodate
Microsoft's Internet Explorer 3.0 and 5.x, and
Foreign Language Transliterators.
Text revised: May 20, 2003

Junk notes....

Perl example....

Go Directly To Encrypter!

WPoison Implementation and resources

For right-mouse-click(IBM), or click-and-hold(Mac), download
from its current home of: http://neteze.com/netizen/mail/mail_mask.shtml
or its future home at: http://vinyasi.mayashastra.org/mail/mail_mask.shtml



        First written: May 25, 1998. Version Two: automatically adds a MAILTO: string in the front of entered EMAIL addresses. At one time, I thought it would be nice to expand the Encrypter's range by adding European characters, but under the action of transliterating foreign languages that use fonts (russian for example) a transliterator I was using converted the Encrypter's character strings embedded in that page thinking it was just doing its job. This rendered the JavaScript Hide - An - EMAIL - Address function on that page useless. On a different note, the ENCRYPT button was working in Netscape, but MSIE 3.0 doesn't like: <input type="button" value="Encrypt" onClick="JavaScript: doIt()">, but accepts: <input type="button" value="Encrypt" onClick="doIt()">. Go figure...... The JavaScript text as it appears on this page remains intact, though, with a few minor additions: an html page that produces a remote email-note (added: ~11/3/98 ?), the capacity to accept single quotation marks [all javascripts](added: 1/2/99), backwards compatability for non-frame enabled browsers (added: 4/4/99), simplified the perl snippet (4/11/99), fixed a typo on the perl snippet (4/13/99), added whois search links (4/24/99), added brackets for including one's name within the email address (8/17/99), fixed bracket typo within text for msie 3.0 browsers (9/10/99), fixed more typos (less than, greater than, etc.) in posted JavaScript code ---- these went unnoticed for a year now because I must have always been pasting and copying through a Netscape browser (9/14/99), streamlined instructions for using the javascript function (9/22/99), added some more resource links (10/13/99), improved javascript displayed input fields to ease pasting and copying and added short cut back-links to this page: Prev Pg Pos (10/14/99), added free form mail links (1/10/99), added a suggestion by Paul McFerrin using html code (9/8/00), modified javascript to accomodate fast browsers (9/21/00), added a resource link (6/8/01), clarified email munging advice (5/12/03), added some more free form mail services in addition to some at cost (5/13/03).
Prev Pg Pos




        Bulk mailers scour the Internet's web pages looking for email addresses. They may find your's, especially if you have ever posted to a search engine. Make sure all META tags, especially GENERATOR type, containing your email address are removed or modified. For instance, remove:

<meta name="generator" content="Iam@this.com">

or modify if occurs:
<meta name="author" content="Iam@this.com">

to:
<meta name="author" content="Dr. Jeckel, formerly Mr. Hyde">

        The simplest way to hide your email address is to convert some of its characters into html code. Apparently, most spam-bots do not expand the code, but most browsers do:

<a href="&#109;&#97ilto:my_email_user_name&#64domain.name">Send me some mail</a>

in place of the usual:

<a href="mailto:my_email_user_name@domain.name">my_email_user_name@domain.name</a>

        But there is a downside. Many html text exitors will expand this html code within files uploaded to your website.

        The next simplest way to hide your email address may be to mispell your address in your link and give your reader instructions on how to fix it in their email note window. It is not a good idea to display your address as text within its link. This is because the easiest way for web robots to pick up your address is by searching for all mailto: links on public web pages and extract from them both the link's HREF and possibly the link's TEXT as well:
Prev Pg Pos


        Send email to: god@heaven.cant.wait.invalid and replace 'heaven.cant.wait.invalid' with 'pearly.gates' in your email note to reach me. This idea comes courtesy of NovaSpace (now offline) and The Email FAQ.

        Similarly, the same practice could be employed when sending email. In your email software there is a place to insert your address that will appear to all outgoing recipients as the sender's address for reply-to. Modify your correct entry to something bogus: guen-32*HONK*@someWhere.com and place this message at the top of your note (or else, at the top of a signature file used by your mail manager software and begin typing your message underneath the following request):

[Remove *HONK* from guen-32*HONK*@someWhere.com when replying to sender]
----Message Content----

Regards,
Guenevive

        An alternate is to replace the @ symbol in a hyperlink with something like:

" // ! # $ ^ & * = + || at [at]AT

        Remove the mailto: link and write the address on the web page where your reader can see it, rather than hyper-linking to it:

Drop me a line at: jsmith$fish.net

and replace any periods with a phrase such as: dot, or period produced by: <i>dot</i> and <i>period</i> , or else seperate . with a space before and after it.
Drop me a line at: jsmithATfish . net
Prev Pg Pos


Surround at , dot , and period with single spaces for ease in reading.
The HTML code forATis: <img src="Mailbox.gif" align="top" alt="AT" width="25" height="15" border="0">. It need not be surrounded by a space, it creates its own. Its width in proportion to its height is five to three.

        The reason for either replacing all @ symbols or periods with <i>dot</i> or both is because of the possibility that bulk mailer softwares may be sophisticated enough to hunt down email addresses on a number of criteria, namely:
  1. Look for all links with HREFs containing the protocol: mailto:
    1a. Possibly look at the text within a mailto: link.
  2. Look for all plain text versions of @ symbols shortly followed by a period with a domain phrase: .net .org .edu .com .mil .gov .countryCode .etc
  3. Look for all HTML coded substitutes for [1a & 2]:
ASCII Characters HTML Substitutes
@ &#64;
% &#37;
- &#45;
_ &#95;
. &#46;
.net &#46;&#110;&#101;&#116;
.com &#46;&#99;&#111;&#109;
.org &#46;&#111;&#114;&#103;
.edu &#46;&#101;&#100;&#117;
.gov &#46;&#103;&#111;&#118;
.mil &#46;&#109;&#105;&#108;
.countryCode &#46;&#?;&#?;
Upper Case
A &#65;
Z &#90;
Lower Case
a &#97;
z &#122;
Numbers
0 &#48;
9 &#57;
Prev Pg Pos

        The first criteria is the standard; the second and third are my suppositions for bulk-mailer softwares, but they probably do not occur because it would take too long to search and compile an email list. The first creates listings after first targeting the mailer's audience by compiling a list of web-page addresses to search through. Search engines are used for the targeting step. The second criteria may not be fool-proof. It could possibly be broken merely by replacing either the @ symbol or the period and the domain name (with a gif; the alternate text in the gif image tag must certainly not contain any reference to the domain's name). I don't know; I'm guessing. But if I was a bulk mail programmer, I'ld want it to be the best on the block! If you are not subject to gross violations of your mailbox, than you may ignore this page. But I can tell you from experience, that at the very least, removing all instances of email address links occuring on all webpages and being circumspect about who it is given out to, brings an immediately sizeable reduction in junk mail. Bulk mailers like their address lists to be fresh --- no old and outdated email addresses ---- so they will compile them on demand when needed. Less frequently, some use old lists on the chance that some of the addresses may still be good.
        There may be no way to entirely eliminate criterion two and three (above) given enough patience on the part of bulk-mailers. Mispelling or phonetically spelling domain names may be the only way out of it: dahtkahmm, pointeedeeyu, periodoharjii, doteniitee, puntaGeOBeChica (spanish). Pig Latin anyone? -- or Double-Dutch, Turkey Irish? Oi! Are email yellow pages accesible to bulk-mailers? I don't know. But if they are, are you listed? I used to be, at: InfoSpace.com without my submitting it. I've since changed my ISP address and exclusively use my anti- spam filtering address as my reply-to on all corespondence originating through my email software and link exclusively to form mail from all web pages.
        It's not a good idea to use a period . or underscore _ in place of @ since your corespondent may not be able to figure out where your account name ends [some are multiple words, such as: charlie.mccarthy and joseph_smith] and where your account's domain begins. He or she is going to have to replace your fictitious @ symbol anyway and needs to know where to put the real one when writing you a note. Commas , colons : semicolons ; and single vertical braces | may be too difficult to read, especially in small print. Some symbols that may also be suspect are dashes - percentage signs % and tildes ~ because they may already be in use in email addresses. Double quotes " are both easy to type and read.
        Leaving out email links may be like giving up cars in favor of horse-and-buggies, but it will accomodate all browsers and help reduce your junk-mail fan club.
       
By hyperlinking to a CGI program that retrieves your email address, it's directory might safeguard it from spam spiders. The hyperlink would be:
Prev Pg Pos

<a href="http://www.domain.com/userID/happy/">Write</a> to me at: userID <i>at</i> hotstuff <i>dot</i> com

        Unlike the JavaScript advice found elsewhere on this page, this technique does not require a TARGET property within the A tag.
        If, perchance, spam spidering software should be so sophisticated as to even bother looking within the <a href=".....">hyperlink's text</a>, then keeping the address outside the link and replacing @ symbols and periods with words may help give further protection (or merely redundant protection along with psychological reassurance!).
        This is the index.cgi program (its idea is a program that came courtesy of: Dave Rossow) in its CGI enabled directory (directory name: happy/ in this example):

#!/usr/bin/perl
print "Location: mailto:Mr_Smith<gummy\@bear.com>\n\n";


Or else:


#!/usr/local/bin/perl
print "Location: mailto:Mrs_Smith<gummy\@bear.com>\n\n";
whichever is appropriate for your website.
Prev Pg Pos

        Upload the perl file while in ASCII mode; otherwise, the upload may default to BINARY when in AUTO mode (which is normally used for images and audio files). Define the directory's access priveleges to exclude outsiders as either: 'chmod 755' or 'chmod 711' (whichever works for you; I use the latter one for extra reassurance, but it may not work on all servers), give index.cgi the same priveleges. The CGI directory 'happy' may reside as a sub-directory under your CGI(-BIN) directory.

You can append a subject to the email address so long as you use non-space characters anywhere following the "mailto:" phrase (such as using _underscores_ between words) in order to work in MSIE 3.x:

#!/usr/bin/perl
print "Location: mailto:My_Name<myUserID\@domain.com>?subject=Talk_to_me...\n\n";
        When signing someone's guestbook, enter:     &nbsp;     or else a bogus address (hi@tryAndReachMe.com) or the phrase: SEE@BE.LOW into the (sometimes required) email input field, and place the following code into the top of the comments field:

<a href="http://www.domain.com/userID/happy/"><img src="http://www.domain.com/userID/email.gif" alt="jsmith at fish dot net" border="0"></a>
<p>

followed by your comments.

        An alternate method of protecting your email is to never even deliver it to surfers. Link to a form mailer instead that mails only to you.

        If you don't have access to a CGI capable account, then bring back the mailto: link for browsers supporting JavaScript, by hiding the address within a function:
Prev Pg Pos

 



<html><head><title>First Hide Example</title>
 
<script language="JavaScript">
<!-- Hide this script from old browsers
 
function letter() {
location="mailto:My_Name<me@someWhere.com>?subject=Shootin'_the_breeze"; }
 
//!-->
</script>
 
</head><body>
 
Send me a <a href="JavaScript: letter()" target="_self">note</a> at: Joe at someWhere dot com
 
</body></html>
 

        The second alternative is to encode your address in JavaScript and place a matching decode function on your web page:

        mailto: Will automatically be added.
Prev Pg Pos

        If you like, append       ?subject=a subject of your choice       or else a blank subject with or without       ?subject=.       Unlike the CGI example above, the JavaScript applications on this page do not need non-space characters (_underscores_) between words to work in MSIE 3.x. But at least one non-space character is needed if       ?subject=.       is included without text following it (i've used a period).
        Use any standard english keyboard character. If you want to use quotations, use apostrophes (single qoute) ' or backquotes ` only.
        Please refrain from using double-quotes "
        Please enter your email address here:



Now tab forward, or backward (by holding down the shift key while tabbing) to copy (Alt, E, C) or (Ctrl+C) and paste (Alt, E, P) or (Ctrl+V) the output fields into this   program's respective variables for use on your own webpages.

This is the base string from which the encoder finds the entered character positions. Careful; there is a character space in here:


Base string size: characters.

Shift string:



This is what you entered:



Place-value shift mask:



This is its encryption:



This is its de-encrytion:


 
The solution:
 
This brings up the browser's compose-a-note window, yet creates the address as a process rather than allowing it to be stored on a webpage in the form of a link safeguarding it from bulk-mailers.
Prev Pg Pos

 
 
<html><head><title>Text Encryption Example</title>
 
<script language="JavaScript">
<!--// Hide this script from old browsers
function sendANote() {
var encodedText="";
var shiftString="";
var shiftMask="";
var alphaNumeric="";
/*
Cut and paste the above string entitled: alphaNumeric in its entirety.
It will stretch out to a single long line of characters.
These five lines of text, beginning with /* and ending with */ may be removed.
*/
var lAlpha=alphaNumeric.length;
var textLength=encodedText.length;
var whereToBanjoo='';
for (var z=0; z<=(textLength-1); z++) {
var car=encodedText.charAt(z);
var poz1=alphaNumeric.indexOf(car);
var bugzy=shiftMask.charAt(z);
var shiftBackInBaseString=(shiftString.indexOf(bugzy) - 9) * (-1);
var poz3=poz1 + shiftBackInBaseString;
if (poz3>(lAlpha-1))poz3=poz3 - lAlpha;
if (poz3<0)poz3=poz3 + lAlpha;
whereToBanjoo+=alphaNumeric.charAt(poz3);
}
 
location=whereToBanjoo;
}
 
//!-->
</script>
 
</head><body>
 
Send <a href="JavaScript: sendANote()" target="_self">mail</a> to: Joe at someWhere dot com
 
</body></html>
 

Try it!
Prev Pg Pos

        Or better yet, on your own webpage.......
        It may be a good idea to change the JavaScript's function name, "sendANote()", to one of your own choosing. The opening and closing paranthesis immediately following the name is mandatory. Or even write your own JavaScript function. [We should be so unlucky that this little gimmick should become soooooo popular that bulk mailers catch on to it!] Let us variegate......
        Linking to this function without a target="_self" within the link may inactivate it if the page is within a frame and there is a: <base target="anything"> statement on the link- page. Similarly, even the remote JavaScript function, described in the following paragraphs, would be useless. It over rides the function's target for opening a new "compose an email message" window. Although, a: <base href=""> statement is alright.
        If it is not possible to use script (JavaScript, etc.) on a web page, etc., then it is possible to use a link to a script on a web page at another location, let's say, your homesite. The page's script would automatically compose an email note with an address and optionally a subject, only to move back within the browser's history to where you were previously. The user would be left with a note ready to write into and send back to you. The link would go something like this:
 
        Suppose you kept a file called: sendMyselfANote.html somewhere at a web location. This link's syntax would be:
 
<a href="URL" target="_self">EMAIL</a>, or alternately:
 
<a href="URL" target="_self"><img src="URL-email.gif" alt="jsmith at fish dot net" border="0"></a>
 
        It is a good idea to place your email address as: jsmith at fish dot net within the alt (alternative text) clause of the img-tag if you use an email image instead of text within this link and in case your user cannot view graphics. The file's contents would go something like this:
Prev Pg Pos

 


 
<html><head>
<title>Have Someone Send Me An Email From Somewhere Else On The Internet</title>
 
<script language="JavaScript">
<!--// Hide this script from old browsers
var encodedText="";
var shiftString="";
var shiftMask="";
var alphaNumeric="";
var lAlpha=alphaNumeric.length;
var textLength=encodedText.length;
var whereToBanjoo='';
for (var z=0; z<=(textLength-1); z++) {
var car=encodedText.charAt(z);
var poz1=alphaNumeric.indexOf(car);
var bugzy=shiftMask.charAt(z);
var shiftBackInBaseString=(shiftString.indexOf(bugzy) - 9) * (-1);
var poz3=poz1 + shiftBackInBaseString;
if (poz3>(lAlpha-1))poz3=poz3 - lAlpha;
if (poz3<0)poz3=poz3 + lAlpha;
whereToBanjoo+=alphaNumeric.charAt(poz3);
}
 
location=whereToBanjoo;
 
//!-->
</script>
 
</head><body>
 
<center><h1> Does Hitting Your Browser's <a href="JavaScript:history.back(1)">BACK</a> Button Do Anything?
<p>
If Not, Then It Is Safe To <a href="JavaScript: self.close()">Close Me!</a>
</h1></center>
 
</body></html>

        Somewhere on your pc keep this text file handy (on the desktop) for reference when filling out guestbooks:

=========start of file's contents===========

<!--CGI-->
<!--blank subject-->

<a href="http://www.domain.com/userID/cgi-bin/happy/"><img src="http://www.domain.com/userID/email.gif" alt="jsmith at fish dot net" border="0"></a>
<p>

<!--CGI-->
<!--General Comments-->

<a href="http://www.domain.com/userID/cgi-bin/new/"><img src="http://www.domain.com/userID/email.gif" alt="jsmith at fish dot net" border="0"></a>
<p>

<!--CGI-->
<!--Referred from a GuestBook-->

<a href="http://www.domain.com/userID/cgi-bin/year/"><img src="http://www.domain.com/userID/email.gif" alt="jsmith at fish dot net" border="0"></a>
<p>

<!--JavaScript-->
<!--no subject-->

<a href="URL1-sendMyselfANote.html" target="_self">EMAIL</a>

<!--JavaScript-->
<!--no subject-->

<a href="URL2-sendMyselfANote.html" target="_self"><img src="URL2-Mailbox.gif" alt="jsmith at fish period net" border="0"></a>

<!--JavaScript-->
<!--no subject-->

<a href="URL3-sendMyselfANote.html" target="_self"><img src="URL3-email.gif" alt="jsmith at fish dot net" border="0"></a>

===========end of file's contents============
 



        If you want to sign someone's guestbook, but leave the EMAIL entry blank, then type either this:
Prev Pg Pos

&nbsp;

or make up something ridiculous or obviously a foil: not available, clown@circus.net, 000-0000 for phone numbers, etc. Then optionally, put your sendMyselfANote link-code somewhere within the body of the comments field along with a text-version of your email address for non-JavaScript browsers: jsmith at fish dot net
        Filling out forms for downloading software and the like may not require a valid email address for your benefit if you don't need to receive any corespondence from the company. Or posting to search engines for that matter. One approach is to use a known mail-dump. This is a place where mail can go to because it is a valid address, but all mail received is never opened ---- it is trashed instead. Ask your internet connection service or web space provider if they have, or know of one, that you can use. Two such places, for instance, are:

jmail@crosswinds.net
and
spammagnet@junkbusters.com
and
nobody@spamcop.net

Or try using an account at a free email Web service. Ignore the content of the account and periodically delete files without opening them if possible. The only important mail received upon posting to search engines are messages, such as: "If you want to remain on our search engines beyond the initial two week free period, you must place our banner advertisement on your posted web page." Of course, you'll get TONS of junk as well. Don't that make you feel special?

Free Email Services
Yahoo Mail (has links to its service in multiple languages), Greek Mail (in Greek and English), Rocket Mail, Hot Mail, Hot Bot, Angel Fire, Lycos Mail, Mail Express, Valise: [Valise is user friendly for speakers of: English, Français, Deutsche, Nederlandse, and Big 5 or GB code for Asian countries]

Prev Pg Pos


 For Mild Relief and Prevention from Hitting the Panic Button:

NO SPAM!

        Reading a little from there gives me an idea. Why not combine caution with aggression? Just as there are multiple kinds of snow to the Eskimo, there are many types of spam. To err by forgetting or not knowing to hide the addresses of multiple recipients to an email is the aggravating type. To then use that tempting gravy by someone down the line is spam of the opportunistic type. Spam sent from someone "out of the blue" is also of the unsolicited type, but when they go to the trouble of forging their reply-to address, it is bordering on the malicious. Even though mistaken aggravation and opportunism are related by cause and effect, they require a more pointed response, one that addresses more than mere aggravation. Next time this happens to me, I'm not going to remain passive to wait and see and respond only when someone goes ahead and sends me mail derived from that list as I did the first time it happened a few months ago. Because anger had a chance to build with each letter that came from people, many who were sincere but underinformed ---- as I was. Neither must I jump to a crusade. If being on a validly subsribed-to mailing list produces an occaisional error, then I think a prompt letter to the sender, reminding him of both the apology that maybe should be forth coming from him to all on the list, but more importantly to include a warning: "Please do not send anyone on the list unsolicited mail" is the best that I can do ---- mistakes do happen. Only if the mail-list sender lacks a satisfactory response to his error should I begin to consider getting more involved. That involvement, or the immediate response I will want to give to spam of the other two types, entails the following:
Prev Pg Pos

  1. If you can not do the following in aol's mail manager, then forward any spam to your work address or a friend's (with their consent) and do this there:
  2. Open up the message.
  3. Select "view full headers" in the mail manager.
  4. Copy everything into a new note with a little polite reminder for the recipient of your note to look into the matter.
  5. Look at the header. There is a list of received's that tells the chain of transference the email took to get to you. Sometimes these can be forged, particularly the ones (one or two or three) immediately adjacent to the originating sender's received: (these are known as hoppers: machines that are run by the sender and used for what purpose, I don't know --- maybe for in-company rerouting and/or preprocessing of data).
  6. This step is a bit of a skill. Address each note to the domain of the received:s immediately downline from the sender and his hoppers that you feel should know that their system is being used to transfer spam, i.e.: abuse@domain.name or postmaster@domain.name. Also notify domains that the spammer might be using from them, either an account, or a forgery in his reply-to, from a recognizably large domain: msn.com, aol.com, juno.com, or is immediately adjacent to a connection service (isp), or uses the isp (sometimes in a country foreign to the sender) as a complicated series of relays to hide himself and/or get more innocent parties involved to confuse the issue, all of these discovered through the use of a trace made to the sender's domain (see below: NeoTrace). Legitimate companies across the globe may also have their domain name hijacked, or illegitimate ones may be using a relay point somewhere else. It's confusingly hard to tell sometimes.
  7. NEVER deal directly with the spammer if it was not an honest mistake on the part of a mail-list administrator forgetting to hide your address! Although technically such a mistake is not spam, its occurance will lead to spam of the naive type: no hidden sender's address, and your address has just been distributed to a few potential spammers.
Prev Pg Pos

        Using MS-DOS's "tracert" command at the prompt can do a trace route to either an IP numeric address, or a name-server address. Shift to a MS-DOS window, then immediately type in:

tracert cnn.com


Or:


tracert 207.25.71.24
If the trace routing should get tied up in "timed out" statements, then stop the flow by depressing the Ctrl and Break keys simultaneously. Then exit by typing the word exit and hit the Enter key or do some more trace routing.
        Or, for $20+ NeoTrace can find all the IP (internet coded) addresses of transfer points along the internet from any point A to B. It usually can also retrieve their domain names associated with their IP address when available. This is one way to do your homework when trying to identify the domains used by a forger, or at least the ones adjacent to him. It can also point out server-(slow)down points along a data transmission route if perchance you cannot reach a web site or reaching it is a (slow) drag --- man! --- and want to locate more specifically the location of the problem along the way. Maybe the problem originates with your immediate (local) provider, maybe it does not. But if it does, then you will know for sure the need to give him a call. A nifty little gadget that purportedly even the IRS and FBI use (to pursue mail fraud and pedophiles). In addition, the whois search links below round out this arsenal for fighting back:
Prev Pg Pos



Take a look at:

•   Whois Search Links: Search domain names, IP numeric addresses, here and abroad:

http://ww2.arin.net/whois/
American Registry for Internet Numbers
ARIN’s Whois program searches ARIN’s database to locate information on networks, autonomous system numbers (ASNs), network-related handles, and other related Points of Contact (POCs). This search tool will not provide information relating to domains, military networks (NIPRNET) or networks registered through RIPE or APNIC.

http://www.networksolutions.com/cgi-bin/whois/whois
Network Solutions
InterNIC: for domain related information.

http://www.nic.gov/whois.html
CEMT: Center for Email Technology
For US government domain names, user names (last name, first name) and e-mail addresses of registered Points of Contact.

http://www.ripe.net/db/whois.html
RIPE Network Coordination Centre: for European related information.

http://www.apnic.net/apnic-bin/whois.pl
Asia-Pacific Network Information Center: for related information.

Prev Pg Pos

•   Computing & Internet: Software: Internet: E-mail: Spam Software

http://www.cix.co.uk/~net-services/library/
Library of Email Software from Net Services
Get lots of e-mail offering you get-rich-quick schemes? Want to hit back? Spam Hater is free Windows software that helps you respond effectively and make spammers wish they weren't.

http://www.mcafee.com/myapps/neoworx/default.asp
NeoTrace is an advanced Internet testing and information tool that allows users to trace origins of spammers and other Net traffic, perform trace-route tests of Internet connections, identify the location of network failures and more.  

http://spamcop.net/
Offers white and black listing filteration of incoming mail, along with forwarding, polling, and retrieving. Automated email header reading with advice on suggested contacts for sending spam complaints. All this and more (discussion forums) for a measely fifty cents per megabyte of volume (averaging about $12/year).

http://www.monkeys.com/wpoison/
Wpoison is a free tool which can be used to help reduce the problem of bulk junk e-Mail on the Internet. Using CGI script, WPoison creates random e-mail addresses and Web pages that can ruin a spammer's day.

Prev Pg Pos
 

•   Free Form Mail Services:

http://www.bravenet.com/samples/emailforms.php
Uses cookies.

http://www.whiz-mail.cc/
Uses cookies and javascript and is much more than a free, form-to-email service by incorporating: data-form submission by your website-visitors.

Form to Mail Service at BNSoft devoid of advertising, but you will have to embed your email into a hidden input field within your form mailing page.

Prev Pg Pos
 

•   Form Mail Services For a Charge:

FormMail.To/You Doesn't accept free service to new members anymore due to abuse by some of its members for the purposes of spamming, but is offering paid service for $1 a month. This service has the added convenience of merely requiring you to point your corespondents to FormMail.To/You's form mailers existing on their servers. So, you won't have control over the look and feel of the form page, but the URL of the link required to point to the form mailer will possibly be shorter than if you had used another service that might have required the form to be located within your website. This is a convenience whenever leaving links to your form mailer within email messages (to newsgroups, etc.).

Professional Mail Forming for busineses who need that extra look and feel with service they can depend on for $15 a month.

Prev Pg Pos
 

•   Some Interesting Ideas at Half Bakery:

http://www.halfbakery.com/idea/Spamproof_20email
Read these, or, get an account there to post some of your own.

•   Anti-Spam Resources at: http://www.mcafee.com/myapps/neoworx/default.asp


A quote from the seller of a bulk e-mail software (you'll love this, if you can stand it!):
Prev Pg Pos

Does my NICErsPRO have a Built-IN Automatic UseNet NewsGroup address Extractor?

YES - YOU get the UseNet Newsgroup Extractor and, by using the NICErsPRO cloaking features described below, you should be able to get to mail to this flame - happy anti - commercial oldest and most "out - of - touch" section of the Internet with the greatest possible degree of success! Click here to order!


Does my NICErsPRO's WWW Extractor allow me to strip from Classified Web Sites? from ISP member Web Sites? from Guest Books at Web Sites?

YES - and you'll find that these are the *richest* sources of email addresses on the WWW, where YOU GET tremendous savings of your precious and valuable time, maximizing your productivity, increasing your targeting, reducing your flames, increasing your positive response rates, increasing your sales, putting more money into your pocket! Click here to order!


Does my NICErsPRO have the BEST SOFTWARE-based CLOAKING available thru ECD, the only cloaking program in the world written by the FATHER of SOFTWARE CLOAKING?

YES - YOU GET YOUR NICErsPRO with ECD, the Email Cloaking Device, which will, at your discretion, cloak your authenticated sender, your personal domain, your machine hops, and your MESSAGE ID -- all designed by the FATHER of SOFTWARE CLOAKING - dramatically reducing your exposure to flames, ISP account disconnections, which will in turn lead to dramatic time savings, more sales and more income, as well as giving you the opportunity to save LITERALLY THOUSANDS of dollars in direct - email - friendly ISP costs which typically cost hundreds of dollars per month! Click here to order!


The list goes on and on. Extract using: GENERIC and SPECIFIC text Extractors and from: DejaNews, the folders of popular Internet mail clients such as EUDORA and PEGASUS, and AOL's: Member Directory, Message Boards, Chats, and Classified Ads.


Let us pray for deliverance.......[and get kicking!]
Prev Pg Pos


 

Current Status of MayaShastra.Org               Form-Mail the WebMaster
Book || Topics || Sanskrit || Essays || Poetry || Posts || Links || MyWare
Music || Utilities || Images || Site Map || References || Donations || Home

Search Here Using....
Advanced
Advanced
Results in:  Any Language  English

Receive Email Whenever This Page Changes

http://www.neteze.com/netizen/mail/mail_mask.shtml
Friday, 23 May 2003 10:19:16 Pacific Daylight Time