|
E-mail linksAn E-mail link is a link that will allow the person who clicked on it to send a e-mail to the e-mail indicated in the link. It is very simple to create a E-mail link. Instead of writting the URL in the herf="", you will need to write href="mailto:youre-mail@thewebsite.com". Below is an example:
<a href="mailto:you@yoursite.com">Send an E-mail</a>
If you click on the link above, an e-mail box will open (usually with outlook express or which ever program you use) and you will be able to send E-mails through that. You can also add a title to the E-mail like this:
<a href="mailto:you@yoursite.com?subject=An example of an E-mail link">Send an E-mail</a>
|