tags:

views:

150

answers:

2

Hi all,

is there anyway that i can use "mailto" with empty recipient?? i only want to supply the subject and the message body and then the user can write the to addresses on mail. i tried writing only a space but it didn't work.

Thanx in advance..

+2  A: 

This should do, I tested it.

<a href="mailto: ?subject=your subject&body=your body">test</a>

edit, added bodytext, I forget that one to include ;)

Ben Fransen
thats exactly the same as the above
streetparade
+1  A: 

This should work..

<a href="mailto:?subject=My Subject">test</a>
Immanuel