Insert a line break in mailto body

I would like to insert a line break into my mailto body. I tried %0A, %0D and %0D%0A. Nothing worked for me. I tested on Gmail, Yahoo, Apple Mail, Outlook 2010, Outlook.com and Thunderbird with Google Chrome on Mac OSX. Any help please ? Here’s my code : <a href=”https://stackoverflow.com/questions/22765834/mailto:[email protected]?subject=Subscribe&body=Lastame%20%3A%0D%0A%20Firstname%20%3A”><img alt=”Subscribe” class=”center” height=”50″ src=”subscribe.png” style=”width: … Read more

mailto link with HTML body

I have a couple of mailto links in a HTML document. <a href=”https://stackoverflow.com/questions/5620324/mailto:etc…”> Can I insert HTML formatted body in the mailto: part of the href? <a href=”https://stackoverflow.com/questions/5620324/mailto:[email protected]?subject=Me&body=<b>ME</b>”>Mail me</a> Note that (2016) in iOS, it is perfectly fine to add <i> and <b> tags for simple italic, bold formatting. 9 Answers 9

Can I set subject/content of email using mailto:?

Is it possible to set the subject/content of email when I use mailto:? 13 s 13 Yes, look all tips and tricks with mailto: http://www.angelfire.com/dc/html-webmaster/mailto.htm mailto subject example: <a href=”https://stackoverflow.com/questions/4782068/mailto:[email protected]?subject=free chocolate”>example</a> mailto with content: <a href=”mailto:[email protected]?subject=look at this website&body=Hi,I found this website and thought you might like it http://www.geocities.com/wowhtml/”>tell a friend</a> As alluded to in … Read more