Can I set subject/content of email using mailto:?
Yes, look all tips and tricks with mailto: http://www.angelfire.com/dc/html-webmaster/mailto.htm mailto subject example: Run code snippetExpand snippet mailto with content: Run code snippetExpand snippet As alluded to in the comments, both subject and body must be escaped properly. Use encodeURIComponent(subject) on each, rather than hand-coding for specific cases. As Hoody mentioned in the comments, you can add line breaks by adding the following encoded sequence … Read more