Computer Science Canada

'mailto' links

Author:  Rohan [ Tue May 17, 2005 4:18 pm ]
Post subject:  'mailto' links

hey, umm...i know this sounds pretty n3wb-ish...and well, frankly, i am a newb at html Confused but i was wondering how to make the subject line fill in when i hav a mailto link. for example: if i have mailto:email@domain.com i want it so that when they click the link, it shud automatically fill the subject in with sumthing like Re: Website

i'd appreciate it if sumone could help me...thank you in advance Very Happy

Author:  wtd [ Tue May 17, 2005 5:41 pm ]
Post subject: 

HTML:
<a href="user@site.com?subject=Hello!">Yada yada yada</a>

Author:  Notoroge [ Wed May 18, 2005 4:54 pm ]
Post subject: 

HTML:
<a href="mailto:user@site.com?subject=Hello!">Yada yada yada</a>
Razz

Author:  Lazarus [ Sat May 21, 2005 8:30 pm ]
Post subject: 

code:
<a href="mailto:email@moomooman.com?subject=subject goes here">E-mail!</a>

Author:  Rohan [ Sun May 22, 2005 4:31 pm ]
Post subject: 

Awesome, Thanks A Lot Guys Very Happy

Author:  theguru [ Wed Oct 26, 2005 4:32 pm ]
Post subject: 

Not to be a nag but you should use "%20" instead of " " spaces. It'll probably still work but ...

code:
<a href="mailto:email@domain.com?subject=Hi%20Ho">Hi Ho</a>


: