I've been trying to generate an email from an App Inventor app. It successfully builds the mailto URI, but for some reason the data for the email body, which should look something like:
name1, value
name2, value
name3, value
Isn't being displayed - only the first line is placed into the email... I'm using %0A to signify a newline within the mailto URI (as indicated by a number of folk) but it just doesn't work....
The mailto URI that my app is generating is something like:
mailto:x@y.com?subject=test&body=name1,value%0Aname2,value%0Aname3,value%0A
but all I see in the generated email is:
name1, value
Anyone got any ideas?