mailto question

Stationery Direct

Administrator
Staff member
Just a quick one, in a HTML e-mail, do I have to add mailto to the e-mail address displayed in the context of the page, for example should it be displayed like this in the code...

me@me.com

or this

<a href='mailto:me@me.com'>me@me.com</a>

Cheers

D
 
If you want it to fire up the visitor's mail client then the second one.

:D don't forget that there are clients who don't use Outlook (in 90% of cases this link will trigger Outlook)... what will happen next? outlook setup window will open and your client might loose any interest in your services or products (i've seen cases like these).

I would suggest to you address without a link, but if you still want one you might want to improve it like this:
Code:
<a href='mailto:me@me.com' title="Contact Us">me@me.com</a>

good luck
 
Back
Top