[ACCEPTED]-How can I create mailto links without recipient that will work on Chrome on Ubuntu?-mailto
Accepted answer
If I understand the definition right this 2 should work:
<a href="mailto:?to=&body=AAA,&subject=BBB">MAIL</a>
At least it does work in Chrome 1 36 on OSX…
Try adding a space between mailto:
and ?body=AAA,&subject=BBB
like this:
<a href="mailto: ?body=AAA,&subject=BBB">mail link</a>
Or 1 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>
0
Source:
stackoverflow.com
More Related questions
Cookie Warning
We use cookies to improve the performance of the site. By staying on our site, you agree to the terms of use of cookies.