HTML コンテンツを電子メールで送信したい。インテント経由で gmail を開き、以下のコードを使用して作成ページを表示します。
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("text/html");
emailIntent.setPackage("com.google.android.gm");
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "subject here");
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, Html.fromHtml("html <b>content</b>"));
startActivity(Intent.createChooser(emailIntent, "Email to Friend"));
しかし、これの問題は、インライン画像を送信できないことです。どうすればそれができますか?