When using the additional parameters in a mailto:// hyperlink, the cursor is placed at the start of the message. Is it possible to set the starting position of the cursor to another location in the body text?
For example, consider the following HTML:
<a href="mailto://[email protected]?subject=Hello&body=Hello,%0D%0A%0D%0A%0This%20is%20an%20additional%20line%20of%20text...">Click Here To Email Me</a>
Clicking on the link will launch the end-user's default email client and (if the client supports it) will pre-populate the to field with [email protected]
, the subject field with Hello
and the body field with:
Hello,
This is an additional line of text...
The default positioning of the cursor (i.e. in OS X Mail.app) is at the beginning of the body, before the word "Hello".
How can the cursor be positioned after the ellipses, so the end-user can finish the message? Is that even possible?