Support
Visitor
|
Re:How do I create an email link? - 2006/02/16 21:27
If you have a website that includes an online editor, you just need to follow the linking directions on the website.
If you do not have an online editor you can create an email link from code by doing the following: 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.
|