How To Create An HTML Mailto Link
Using HTML code to create a Mailto link that visitors can click on in order to send you an e-mail looks something like this:
<A HREF="mailto:name@mydomain.com">Click Here To Email Me</A>
The mailto link is written in the same format as a hyperlink except you use mailto: in place of the http:// and your e-mail address in place of the page address or URL.
Note
You must include the </A> code at the end of the line in order for the mailto link to work.
There is NO space between the mailto: and the e-mail address.





