How to insert a line break in the body of mailto on iOS?

Viewed 1388

In order to take advantage of iOS 14 default Mail app, we now use "mailto". How can we insert line breaks into the body of the email?

None of the following methods work:

\n
\r
%0D%0A
%0D
<br>
3 Answers

This is working again in iOS 15. You can use \n

To insert line breaks in the mailto body parameter on iOS, use:

\r\n
Related