views:

13

answers:

1

I would like to know the simplest way to use a text link and open a visitors email client.

+1  A: 

A simple example:

<a href="mailto:[email protected]">

You can read more here.

Keep in mind that should you want to do anything more than your basic "Look ma! I sent a mail!", you should do it with forms and a proper server-side handler to send the mail for you. MailTo-links are inherently buggy and cumbersome. Especially if you should want to put anything besides regular ascii in the text, as email-clients handle charactersets differently.

Epcylon