Forward Back

Other HTML


Home

Advanced HTML
Javascript
The Tools
Promoting the page
Making Money
Contact Me

Adding a preset subject to your mail links:

Their are three ways to do this, none of which is fool proof:

1.Use the TITLE attribute of <A>. <A HREF="mailto:me@myisp.com" TITLE="Some Subject">Send Mail</A>
Works in most browsers except Netscape.

2.This is the most reliable method.

 <A HREF="mailto:me@myisp.com%20(Some%20Subject)">Send
               Mail</A>
The mail from such a link arrives with the address line of:
me@myisp.com (Some Subject)
It doesn't always work with Lynx however.

3.This crashes just about everything except Netscape, and it also works with Lynx.
               <A HREF="mailto:me@myisp.com?subject=Some 
               Subject">Send
               Mail</A>
The mail will arrive with a Subject line of Some Subject Use this method at your own risk.

Mail me at tkeer@cvn.net

1