i have this code which prefill an email and throw an intent:
Intent email_intent = new Intent(Intent.ACTION_SEND_MULTIPLE);
email_intent.putExtra(Intent.EXTRA_SUBJECT,
"iTempco"+getString(R.string.superficie_scambio));
email_intent.putExtra(Intent.EXTRA_TEXT,{{here_the_html_code}});
email_intent.setType("text/html");
startActivity(email_intent);
where you see {{here_the_html_code}} i have a string with html code (working perfectly). the problem is that, when the activity is thrown, i see the html code (the source) in the text area of the client, not the "converted one"
how can i?
thanks.