eXtreme
Jul 22 2005, 05:29 PM
I've just found a great freebie that is VERY useful for all the people that mantain a website, and just hate to receive spam. Usually the site webmaster always provide a link to his email address, to receive comments or complaints. But there also exist email-harvesting robots, that are like google spiders, only that they crawl emails addresses, not websites.  So a simple: <a href="mailto:user@example.com" title="test">test</a> can get your INBOX full of spam, if you're unlucky.  Usually the best solution is not to display anything at all, but I think we all prefer the second best option, that is simply to encrypt the email address, but still make it readable to the user who's visiting the site. And that's where Automatic Enkoderfrom comes. Just input the basic fields, such as email address, the link text, and optionally the ALT text and the subject text. It will then create the encrypted HTML code where you just copy-paste on your site, where you want your email address to appear. Already tried, and it works excellent, and the biggest plus is that it's free. 
Reply
truefusion
Jul 22 2005, 05:48 PM
You know there's another way of doing it, and that's by using the server-side include, php.
Reply
Lyon2
Jul 22 2005, 06:00 PM
There's tons of ways of protecting the emails from spammers, but this is a new one for me, so, thatnks, i'll try it.
Reply
eXtreme
Jul 22 2005, 06:36 PM
eheh, nice you like it Lyon2.  QUOTE(truefusion @ Jul 22 2005, 05:48 PM) You know there's another way of doing it, and that's by using the server-side include, php. truefusion, maybe you could help everyone by telling us that PHP solution, no? Then we all could know atleast 2 possible options to protect the email address from spammers.
Reply
truefusion
Jul 22 2005, 09:07 PM
Welp, this is a way of doing an anti-spam feature in php. I'm sure there are other ways of doing it in php. CODE $anti_spam = '@'; $to_email = "email${anti_spam}host.com";
Reply
mayank
Jul 23 2005, 05:52 AM
QUOTE(truefusion @ Jul 23 2005, 02:37 AM) Welp, this is a way of doing an anti-spam feature in php. I'm sure there are other ways of doing it in php. CODE $anti_spam = '@'; $to_email = "email${anti_spam}host.com";
well i am sure that this looks that it will work but i dont know how to apply this..if you can tell me that how will it apply it then it will be great otherwise i am thinking of using the encoding option (fearing of submiting the email address other website).
Reply
rvalkass
Jul 23 2005, 11:10 AM
On your webpage, where you want your email address to appear type: CODE <?php $anti_spam = '@'; $to_email = "email$(anti_spam)host.com"; echo $to_email; ?>
Then save your webpage with a .php extension.
Reply
Inspiron
Jul 23 2005, 04:13 PM
http://www.directron.com/expressguide.htmlThis site uses javascript to encode email addresses. The encoded script can be easily decoded with some scripts that able to turn over javascript to display the real text in the encoded stream. I use such encoding tools to encode my email address too, but I still recommand storing your email address in flash. No programs or scripts are so advance to crack and heck into flash files to extract email addresses I should say...
Reply
karlo
Jul 23 2005, 04:44 PM
Here is the script that I made, I hope that you will like it.. it's in PHP... CODE <?php
/* Secure Email Function by Juan Karlo Aquino de Guzman Website: http://www.karlo.ph.tc and http://www.abs-cbn.ph.tc E-mail: http://www.karlo.ph.tc/send.php
Usage: showEmail("support@microsoft.com",0); OR showEmail("support@microsoft.com",1); <-- example Types: 0 = ordinary random 1 = more secure random
To include to a script:
include_once("email_secure.php"); */
function showEmail($email,$type) { if(!strstr($email,"@") || !strstr($email,".")) { echo("<div align=\"center\" style=\"font-family: Verdana; font-size: 12px; font-weight: bold; color: white; background-color: black; padding: 4px;\">Your e-mail is invalid!</div>"); }else { $email_split=split("@",$email); if($type===0) { $random1=str_shuffle(strtolower(metaphone(sha1(mt_rand(11111,99999))))); $random2=str_shuffle(strtolower(metaphone(sha1(mt_rand(11111,99999))))); $randomAT=str_shuffle(str_shuffle($random1).str_shuffle($random2)); }else { $random1=str_shuffle(strtolower(metaphone(uniqid(md5(mt_rand(11111,99999)))))); $random2=str_shuffle(strtolower(metaphone(uniqid(md5(mt_rand(11111,99999)))))); $randomAT=str_shuffle(str_shuffle($random1).str_shuffle($random2)); }
$atSign=rawurlencode("@"); $first=rawurlencode($email_split[0]); $second=rawurlencode($email_split[1]); echo "<script language=\"javascript\" type=\"text/javascript\"><!--\nvar $random1=unescape('$first');var $random2=unescape('$second');var $randomAT=unescape('$atSign');document.write($random1+$randomAT+$random2);\n//--></script>"; } }
?>
Reply
Artanis
Jul 23 2005, 05:02 PM
But why would you put ur email for complains.. and stuff... if you are 24/7 put ur aim sn up as a support talk, if u dont want to do that, u know on aim u can have 2 sn's at one, put on eas asupport other one as chat...
Reply
PhxStorks
Aug 22 2005, 03:45 AM
Here is another one that uses javascript... www.jracademy.comThe other option didn't seem to work for me (might be my wysiwyg website editor) as you could still see the "mailto" address at the bottom of the page when you hovered over it (even though I requested this say something else.) This one I found puts numbers in that space instead or leaves it completely blank at the bottom. I'm gonna try this out and see if it cuts down on the spam. I'm sure I'm already in a number of Spammers lists as I recieve about 5 emails a day wanting to sell me viagra or cialis! hahahahaha
Reply
skynet
Jul 26 2005, 11:53 AM
Thanks all for sharing the info! I will try this on my new website!
Reply
Darker333
Jul 26 2005, 01:36 AM
You all know there is a more secure method. 1. Use a serverside script with php to secure any way to find an email. 2. The email they will send to will be set up so that it will delete spam, and with a word filter can destroy any foul mouthed emails! Then it will auto send to another email. I think this can be done using Outlook express plug-ins. I will post up a more accurate way to do this once I find the guide. But you get the general idea?
Reply
truefusion
Jul 25 2005, 03:25 AM
I was away for a while, so i couldnt mention this. The code i placed in my previous post was an anti-spam method for a form-to-email script. It's supposed to be used with the mail() function.
Reply
bjrn
Jul 24 2005, 11:08 AM
Those scripts all look quite complex. If you are hosted here on Trap17, you have access to PHP. Why not just make a contact form, so you don't have to show your address at all? You can, if you want people to be able to get access to your email address, even make a form where they can input their own address and your script automatically sends them an email they can reply to... A problem with javascript things is that it will break on people who have javascript switched off, which might be in the 10% region. Anyway, one interesting method of hiding your email address on a webpage is using CSS. Yep, that's right, just CSS and nothing else. Say you have test@example.com as your email address, what you do is this: CODE <span class="email">moc.elpmaxe@tset</span> and then in your CSS file CODE email { unicode-bidi: bidi-override; direction: rtl; } This will display as test@example.com on screen. Of course, you might have to add that copy/pasting the address won't work, since when you copy/paste, you'll get the undirected string: moc.elpmaxe@tset This won't work for people who have ancient browsers or CSS switched off, obviously.
Reply
Recent Queries:--
encrypt email address - 106.15 hr back. (1)
-
abs xxx@yahoo.com - 390.34 hr back. (3)
Similar Topics
Keywords : encrypt email address websites trick email harvesting robots- Send Anonymous Email
- Great (18)
Ever wanted to send someone an anonymous email withouth the slightest chance to tracing it to you?
Try this then: http://formmail.cgiworld.net/email.cgi?rec...youwanttosendto Enter the email
address in the link and the message you want to send and cgiworld.net will send it to you. Example
http://formmail.cgiworld.net/email.cgi?rec...r=xxx@yahoo.com Great for pranks or for any other
anonymous needs! ( I admit, spam is probably a definite issuses in services like this
including the Send Your Email To Anything@mailinator.com topic below me. ) /bli...
Email Delivery Reports
- Do anybody Know any service? (4)
Please, Anyone around here. Do you know of a service that provides, free email delivery reports, and
that also for yahoo. Does anyone know about that service , please tell me. Because there are
situations when you want to now whether your emails have been read or not....
Websites In Your Mobile
- (0)
Rss Builder V2, Create And Download Rss Feeds For Your Websites
- Start building your website rss material, completely free! (14)
QUOTE RSS Builder ** free ** RSS Builder is an easy to use program to create RSS feeds for your
web site. It provides a simple interface that lets you add topics, links and content, and then
publish the RSS (v2.0) feed to your web server, using the built-in FTP client. What is RSS? RSS is
an abbreviation of either Really Simple Syndication or Rich Site Summary; it depends who you talk
to. RSS is the new standard for distributing news and information via the Internet. The information
is published via RSS News Feeds. What is an RSS News Feed? An RSS news feed is a li...
Email Yourname@mirc.ms
- (5)
I am offering everyone a personal email address Yourname@mIRC.ms xD post here with the email
adddress you want and the email address you want the email forwarded to for example You@Hotmail.com
please email your details to Request@mIRC.ms....
Free Books/tutorial
- few free download websites.. (3)
C stuff QUOTE http://www.strath.ac.uk/CC/Courses/NewCcourse/ccourse.html
http://www.cm.cf.ac.uk/Dave/C/CE.html http://www.cprogramming.com/tutorial.html
http://www.cs.virginia.edu/c++programdesign/slides/
http://www.icce.rug.nl/docs/cplusplus/cplusplus.html Database reading QUOTE
http://www.bus.orst.edu/faculty/brownc/lec...tutor/index.htm SQL stuff QUOTE
http://w3.one.net/~jhoffman/sqltut.htm http://www.doc.mmu.ac.uk/STAFF/E.Ferneley/SQL/index.htm
http://www.daimi.au.dk/~oracle/sql/index.html Visual Bas...
Free Email Accounts, Lots Of ._____coms
- (9)
hello friends, This may not be the best freebie post, Its my first. Here is an free email I have
been using for a while(2yrs), i thought it would be helpful to weed out the spam from some of the
sites we have to enter our emails, or make a good email .com for someone. go to www.mail.com to
sign up . ....i think you can also listen to your email, but i haven't signed up for that yet.
here is the best part, a list of all the email names you can choose.......... QUOTE mail.com
email.com iname.com cheerful.com consultant.com europe.com mindless.com earthling.net ...
1000 GB (1TB) Email
- Yes 1000 GB - No Typo (37)
Hriders is a free email with 100gb. I found it whilst randomly surfing the internet. 500mb
attachments. Useless but i can use it to store excessive stuff. I got it to work with out look.
CLICK here to get the server settings as i already use outlook. Gmail was a lot, but now this?
What do any of you think (only give opinion after sign up)....
Free Translation Websites...
- (8)
Here is a list of free translation websites... Many languages to translate from or to....
FreeTranslation AppliedLanguage BabelFish BangenBerg ParaLink ...
Best Free Email
- (126)
whats a good email any suggestions gmail??...
Best Websites Useful For Many
- (0)
Best websites that are useful for many..: QUOTE for free sap material : www.allsaplinks.com
for free java material : www.javamaterial.com for freshers jobs & info : www.fresherscircle.com
for toefl / gre material free : www.msstudyguide.com for part time jobs and earn online :
www.moneyearningtips.com for free telugu movies and gossips : www.telupunalupu.com for
free telugu, hindi, english movies : www.brainofandhra.com for free desi romantic pics from movies
: www.masalacity.com for all software jobs : www.goodmorningjobs.com Slimming tech...
Huge 1 Terrabyte Email Account
- FOR FREE!!!!!! (23)
http://www.mailnation.net/ they offer 1tb email accounts but the catch is its only available to
US people but if you can access it it would be a good spam mail account for all your email spam to
get sent to. thats what im doing so now i never need to care about spamm as it will just redirect
there /smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" />...
Give Your Visitors Free Email From Your Domain
- (4)
Hey, I know website where u can signup for free and give your visitors a free email...
iT's www.gawab.net you sign up and they give you a code and then you give your visitors an email
ex) john@your-domain.com hope you enjoy it... ...
Ip Address Locator
- (20)
Well since I really need a place to find stuff like this, I finally found out where I can get real
information, not all this WHO-IS junk that people think is correct.
http://www.geobytes.com/IpLocator.htm Great site, and has a lot of other tools for webmasters,
some you might have to pay for, if anybody has a better IP lookup tool please post or PM me so I can
add it to this ongrowing list. Maybe Trap17 should make something /tongue.gif"
style="vertical-align:middle" emoid=":P" border="0" alt="tongue.gif" />....
Crazy Flash Email
- odd but true.... (0)
Well, you think there isnt such as flash email, but there is... it looks like a normal ordinary
email client, it's just made from FLASH. also, besides the email client, it has many things
more. kinda like a apple mac desktop. it has IM, games, file storage, and other stuff. I like
it!! Want to know the website??????? http://www.goowy.com Topic Created:
http://www.trap17.com/forums/index.php?sho...c=29597&hl= Please use the search feature do avoid
creating double topics. Verbal Warning. ...
The World's Longest Alphabetical Email Address
- (21)
Get world's longest email address !! You could get a really long email address
from this site. Have fun. www.abcdefghijklm..... ...
Free Email And Forum Signature Icon Generator
- (6)
This site offers Email and Forum Signature Icon Generator with more than 1500 Different Styles to
Choose from. QUOTE http://www.needasig.com/ The best part of this service is that they
provide the links for the Userbars, so you save a lot of bandwidth. No registration required....
Free Material Websites
- (5)
i got these links but not yet collated them.some may be invalid but most of them are great. QUOTE
http://www.deviantart.com/ http://www.digitalblasphemy.com/ http://www.shadowness.com/
http://www.razorart.com/ http://www.endeffect.com/
http://www.magnetstudio.net/downloads/downloads.html http://www.breedart.org/
http://www.looroll.com/ http://themexp.org/ http://www.deskmod.com/
http://www.wincustomize.org/ http://customize.org/ http://www.artofgregmartin.com/
http://www.desktopgirls.com/ http://misery.subnet.at/ http://www.rad-e8.com/...
I Want To Get A Free Email Account Like This
- help me for create a email account (26)
I know that many sites offer free email service.like yahoo,hotmail.but most of these have some Ads
on the control pannel.for example,hotmail have big ads on the right. so my question is,can anyone
suggest some free email service without Ads on the control pannel and the domain is easy to
remeber. by the way,anyone know any site offer free email service with an edu domain except
australia.edu.for example ,myname@somesite.edu....
Free Stuff !
- Websites Forwarders, Email Systems etc. (1)
Well This Post is Focusing Free Stuff For Your Site Website Forwarders/DNS/Domains --
http://www.cjb.net -- Forwarder/Sub-Domain http://www.za.net -- Free DNS Sub-Domain (Need to be a
resident in North Africa) http://www.eu.org -- Free DNS Sub-Domain (www.yourname.??.eu.org)
http://www.freedomain.co.nr -- Domain Forwarder (No Ads) http://www.ezyrewards.com -- Free Domain
by Asking People to Join etc. http://www.dot.tk -- Ads in it (Yourname.tk) -- More To Come...
Please Add Your Free Stuff For Your Sites (No Piracy or Warez Please) Note: The DNS Ones May ...
Looking For Invite To 30gigs
- 30gigs email. (22)
If anyone could please invite me to this 30gigs Email provider Please PM me a link. Thank you
More information: http://www.trap17.com/forums/30-gb-mailbox-o0-t29885.html Super sorry, I got
the invite. If anyone needs one of these accounts I know a easy way to get one real quick so PM me.
Sorry for posting this. Merging two posts..please make sure that you have to use the report button
when you want to edit any of your post. ...
Magic Taxi Emails
- A new idea for email accounts (3)
I heard someone talking about Magic Taxi , which is an email service that provides the now standard
2GB of space for free. The difference here is that 50% of the revenue generated by the site is
passed onto a charity of your choice from the list shown here . The charities are all UK based
charities, but you can join from anywhere in the world. Each email that you send or receive
generates revenue for the site, which results in revenue for the charities. It may only be a small
amount for each email, but most people send and receive many emails a day, and with lots of p...
New Email System (2gb With Storage)
- (2)
www.goowy.com Gmail is always better but u can try it, free!...
Anti Spam Mail System
- Get fake your mail address fast (14)
Are you often doing registration? Are you boring of getting tons of spam or account activation in
your real and serious mail box? If yes then try this service wwww.mytrashmail.com all you must to
do it's just type your name or nick in one text field then click "Get My Trash Mail" button and
here you go you have your temporary valid mail box whith address yourname@mytrashmail.com. It's
free, fast, no Registration needed and it realy works /biggrin.gif' border='0'
style='vertical-align:middle' alt='biggrin.gif' /> I am using it all the time /wink.gif' bo...
Send Your Email To Anything@mailinator.com
- Read it later (23)
Heyas, I use this service once in a while and think that it's really useful. It's so that
you don't have to give your real email address during registeration... Just put
anything@mailinator.com as your email Then access www.mailinator.com and then put "anything" into
the input box where you put the inbox which you want to access... Very good service, and it also
blocks javascript/"bad things" The only disadvantage is that anyone can look into any inbox. Have
fun with it /wink.gif' border='0' style='vertical-align:middle' alt='wink.gif' /> ...
Free Dvd Websites
- free dvds for one and all (9)
I'm not sure if anybody's ever posted, I couldn't find it where I looked but I really
like this site and you actually get free dvds, you have to sign up for a bunch of stuff to get
points but most of the time it doesn't cost you anything... there's also freedvds.com but
it's gonna be closing at the beginning of the year.... ooh, you can use my referral Id if you
want if you do sign up for freedvd4me 9797 ..... and this is not spam! I have nothing to do with
this website and I don't really care if anybody refers me, I just thought I'd a...
Free Uk Websites..
- (0)
Does anyone know some good websites in the u.k that you can get free stuff off like sweets and
showergell and all that stuff....
Free Flash Templates
- yah..for flash websites (11)
I've tried google so dont post anything off of there please. I'm looking for free
(possibly->) animated flash templates that actually look GOOD. I need a tech/metal/scifi looking
template. Remember FREE. Thanks in advance...
Robogen Free But Limited Edition
- Build your robots.txt with this cool tool (3)
RoboGen Free but Limited Edition This is a free edition of the RoboGen software for Windows 95 and
98. It can be used to generate new robot exclusion files but does not contain as many features as
the Standard Edition. http://www.rietta.com http://www.rietta.com/robogen/downloadle.shtml
http://www.rietta.com/downloads/robogen_le_setup.exe Use this cool and usefull tool to build the
robots.txt file for search engines. The robots.txt can also help optimizing the search engines rank
because it's the best way to tell the se's what5 they can index and w...
Htaccessible
- Very usefull tool for websites hosted in apache servers (2)
QUOTE HTAccessible is a free tool for use on the Windows Platform. It is designed for Webmasters
whose sites are hosted by Apache servers, and who use the .htaccess file to fine-tune the way their
site is delivered to visitors. Unless you work with .htaccess on a daily basis the chances are you
haven't got the exact syntax rolling around in your head when you need it. That's where
HTAccessible comes in. It provides a simple interface for putting together some of the most commonly
used Apache directives, without the need for yet another Google search. Hom...
Looking for encrypt, email, address, websites, trick, email, harvesting, robots
|
*RANDOM STUFF*
*SIMILAR VIDEOS*
Searching Video's for encrypt, email, address, websites, trick, email, harvesting, robots
*MORE FROM TRAP17.COM*
|
advertisement
|
|