How can I create mailto links without recipient that will work on Chrome on Ubuntu? How can I create mailto links without recipient that will work on Chrome on Ubuntu? google-chrome google-chrome

How can I create mailto links without recipient that will work on Chrome on Ubuntu?


If I understand the definition right this should work:

<a href="mailto:?to=&body=AAA,&subject=BBB">MAIL</a>

At least it does work in Chrome 36 on OSX…

RFC 6068: The 'mailto' URI Scheme


Try adding a space between mailto: and ?body=AAA,&subject=BBB like this:

<a href="mailto: ?body=AAA,&subject=BBB">mail link</a>

Or even adding the space as Unicode like this:

<a href="mailto:%20?body=AAA,&subject=BBB">mail link</a>


What about<a href="mailto:?to=%20&body=AAA,&subject=BBB">mail link</a>