An Android Application that I created for a client some months ago has the ability to email a link to a PDF with a ton of text in it. The client now wants that text to go directly in the email, in HTML form (with links, bullets, etc).
Using Android's Mail Intent, I am trying to send this long string over the EXTRA_MESSAGE field, but since I have to wrap the text in double-quotes, I have to '\' almost every double-quote I want in the String, which is rather unpleasant for thousands of lines, not to mention (if I remember correctly), using the += operator for multiple lines didn't seem to work.
Is there any way around this, and what's the easiest way to put long HTML code into a String object for sending?
Thanks!