Graphic Design Forum and Web Design Forum  

Go Back   Graphic Design Forum and Web Design Forum »Web Design Forum »General Web Design Forum

Notices

General Web Design Forum Discuss General Web Design Issues


Reply
 
LinkBack (1) Thread Tools Display Modes
  1 links from elsewhere to this Post. Click to view. #1 (permalink)  
Old 26-05-2008, 10:38 AM
zumojuice's Avatar
100% Freshly Squeezed™
 
Join Date: Feb 2007
Location: York
Gender: Male
Posts: 3,218
Default E-mail Links - Are they now useless?

Many sites have the e-mail link, which when clicked, attempts to open up a new message in the e-mail client installed as default.

While this maybe seen as handy for those who have their e-mail going through such programs, what about shared computers or those with webmail accounts? Hell - I have my own computer and still only use webmail, since entourage spazed out and ditched all my emails, and even the back-up didn't work.. Webmail has the advantage of my e-mails anywhere too...

Does this mean sites that have such a link, particularly in flash (where the e-mail link does not display in the bottom bar) are cutting off contacts and putting off users? Take this shiny site StudioMakgill — Design and Branding . Beautiful work, but does the lack of easy e-mail link make it harder to get in touch? would simply making the e-mail link the actually address solve this simple? Is there another way that could launch my webmail? a plug-in for firefox as yet unrealised.....?
__________________
Richard Gray
http://www.zumojuice.me.uk
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes Page
Reply With Quote
  #2 (permalink)  
Old 26-05-2008, 10:43 AM
tommylogic's Avatar
f*ck yeah it validates!!!
 
Join Date: Apr 2007
Location: Virtually Everywhere
Gender: Male
Posts: 5,707
Default

The e-mail link on a web page is by far the easiest way to get spammed.. I don't use it; in fact, I break them on purpose... but that said, I find it interesting how many people rely on webmail as their sole resort. I can't tell you how many people I know that got screwed on that deal.. lost everything.

I have 23 email accounts... and I have NEVER been let down by Outlook. If you're not using a POP3 client and downloading your mail to your local machine.. shame on you, you deserve to lose it all!!!
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes Page
Reply With Quote
  #3 (permalink)  
Old 26-05-2008, 11:20 AM
PR Design's Avatar
CSS Wizardry
 
Join Date: May 2007
Location: Yorkshire, England
Gender: Male
Posts: 4,612
Default

I wrote an article on the same kind of thing here.

I do get annoyed though when there's just a mailto: link and no contact form.
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes Page
Reply With Quote
  #4 (permalink)  
Old 26-05-2008, 11:45 AM
LeadMagnet's Avatar
Mr. Tambourine Man
 
Join Date: Jun 2007
Location: Ireland
Gender: Male
Posts: 1,539
Default

Well i use gmail and email links open up in a new gmail tab for me, so no, i don't think they're redundant. I also know plenty of people who use either outlook or thunderbird as their email client.

What i've done in the past when making websites is use javascript to create the email link. Web crawlers, afaik, won't process javascript in order to find email links. It's too time-consuming for them.

So what you do it you create a little function in your <head> like this:

HTML Code:
<script>
  function writeaddress(name, domain){
    document.write(name+'@'+domain);
}
</script>
Then wherever you want your email address to appear, you write something like:
HTML Code:
<script type="text/javascript">document.write('<a href="mailto:');writeaddress('yourname','yourdomain.com');document.write('">email: ');writeaddress('yourname','yourdomain.com');document.write('</a>')</script>
__________________
Subtlety is my middle name... and first and last in case you didn't get the point.
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes Page
Reply With Quote
  #5 (permalink)  
Old 26-05-2008, 11:48 AM
tommylogic's Avatar
f*ck yeah it validates!!!
 
Join Date: Apr 2007
Location: Virtually Everywhere
Gender: Male
Posts: 5,707
Default

I prefer A CGI script.. Perl.. but spiders are funny & wicked
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes Page
Reply With Quote
  #6 (permalink)  
Old 26-05-2008, 11:50 AM
LeadMagnet's Avatar
Mr. Tambourine Man
 
Join Date: Jun 2007
Location: Ireland
Gender: Male
Posts: 1,539
Default

Quote:
Originally Posted by tommylogic View Post
I prefer A CGI script.. Perl.. but spiders are funny & wicked
What do you mean?
The whole point is that the email address is constructed client-side. Server-side is completely pointless.
__________________
Subtlety is my middle name... and first and last in case you didn't get the point.
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes Page
Reply With Quote
  #7 (permalink)  
Old 26-05-2008, 11:52 AM
tommylogic's Avatar
f*ck yeah it validates!!!
 
Join Date: Apr 2007
Location: Virtually Everywhere
Gender: Male
Posts: 5,707
Default

Quote:
Originally Posted by LeadMagnet View Post
What do you mean?
The whole point is that the email address is constructed client-side. Server-side is completely pointless.
Server side is the best way, IMO.. I prefer hosts with CGI scripting allowed
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes Page
Reply With Quote
  #8 (permalink)  
Old 26-05-2008, 11:55 AM
PR Design's Avatar
CSS Wizardry
 
Join Date: May 2007
Location: Yorkshire, England
Gender: Male
Posts: 4,612
Default

I just write email addresses as their ASCII equivalents & # 97 ; = a, & # 98 ; = b etc (without spaces obviously)...

...or to refer you to another article of mine: Hide Email Addresses From Spiders With CSS :: PR Consulting - Web Standards Consultancy West Yorkshire // Usability, Accessibility, UX, Web Standards, Semantics, CSS & xHTML Consulting and Front-End Development
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes Page
Reply With Quote
  #9 (permalink)  
Old 26-05-2008, 12:15 PM
LeadMagnet's Avatar
Mr. Tambourine Man
 
Join Date: Jun 2007
Location: Ireland
Gender: Male
Posts: 1,539
Default

No, you're missing the point tommy. If a spider requests the page from your CGI script, they're going to be handed the email addresses on a plate. The work is done for them and there's no point in even using a script to construct the email address.
They download a page, scan it for email addresses and links and move on. With a javascript constructor, they'll scan the page but find nothing, with any server-side script, they'll scan the page they downloaded and find everything.

I wouldn't rely on the ASCII trick these days. That's a very old trick by now.

Another advantage of the javascript is that you can write it to be as obscure as you like to make it extra difficult for the bots. If you really wanted to make it secure, you could even pull in variables from things like image heights or something specified in the css so that only a fully loaded and rendered webpage (web crawlers won't do either) will result in the script outputting the real email address.


*edit* I should also point out that writing out tags like <a> using document.write is not recommended. It's not the DOM way to do things and your page won't validate (not as xhtml strict anyway).
__________________
Subtlety is my middle name... and first and last in case you didn't get the point.
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes Page
Reply With Quote
  #10 (permalink)  
Old 26-05-2008, 12:31 PM
tommylogic's Avatar
f*ck yeah it validates!!!
 
Join Date: Apr 2007
Location: Virtually Everywhere
Gender: Male
Posts: 5,707
Default

Server Side Script.. not like PHP, but Perl app can throw them in a loop which their spider will never escape... a much better trick
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes Page
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Useless Sign Challenge - Free Logo Decals DistinctGraphicz Graphic Design Competitions 10 30-04-2008 10:54 PM
Useless Facts Toon Off Topic 3 20-02-2008 12:12 PM
E-Mail Programs for MAC TripleMoonsDesign Off Topic 21 13-11-2007 06:54 PM
Fuser - All Your Mail in one place Toon General Web Design Forum 2 26-09-2007 11:44 AM
G-Mail vs Yahoo Mail Toon General Web Design Forum 56 10-09-2007 03:02 PM


All times are GMT. The time now is 07:04 AM.