0

インテントを使用して html メールを送信しようとしています。コンポーザーでは HTML 形式で表示されますが、受信側では通常のテキストとして表示されます。画像とテキストをハイパーリンクで送信する必要があります。コンポーザのスクリーンショットはこんな感じ

ここに画像の説明を入力

以下は、私がこれまでに試したことです。

public class Sendingamail extends Activity {
    /** Called when the activity is first created. */
    Button send;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    send=(Button) findViewById(R.id.emailsendbutton);
    send.setOnClickListener(new OnClickListener() {

                    @Override
                    public void onClick(View v) {
                            // TODO Auto-generated method stub

                                  final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
                                  emailIntent.setType("text/html");
                             String html = "<!DOCTYPE html><html><body><a href=\"http://www.google.com\">Visit W3Schools.com!</a>" + "<p>If you set the target attribute to \"_blank\", the link will open in a new browser window/tab.</p></body></html>";
                                  emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Hhhhhhhh");

emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, Html.fromHtml(html));

 Sendingamail.this.startActivity(emailIntent);

                                  });
}
}
4

3 に答える 3

1

これは私のために働く:

  final Intent shareIntent = new Intent(Intent.ACTION_SENDTO, Uri.parse("mailto:"));
    shareIntent.putExtra(Intent.EXTRA_SUBJECT, "The Subject");
    shareIntent.putExtra(
    Intent.EXTRA_TEXT,
    Html.fromHtml(new StringBuilder()
        .append("<p><b>Some Content</b></p>")
        .append("<small><p>More content</p></small>")
        .toString())
    );
于 2012-11-27T12:45:04.573 に答える
0
String text = "<body><b>" +heading +
                "<br>..............................</b><br><br>" +
                "<b><font color='green'>Posted Date :</font></b><br>"+ postedDate + "<br><br>"
                + "<b><font color='green'>Posted By :</font></b><br>" + postedBy+ "<br><br>"
                + "<b><font color='green'>Description :</font></b><br>"+ desc + "<br><br>" 
                + "<b><font color='green'>Post type :</font></b><br>"
                + postType + "</body>";


                    sendIntent.putExtra(Intent.EXTRA_SUBJECT, subject);
                    sendIntent.putExtra(Intent.EXTRA_TEXT, Html.fromHtml(text));
                    startActivity(sendIntent);
于 2012-11-27T12:58:15.577 に答える
0

数日前に同じ問題に遭遇しました。html コンテンツは、使用しているメール クライアントがデフォルトの電子メールおよび gmail クライアントでは処理できないすべての html および css を処理できる場合にのみ表示されるため、コードでできることはあまりありません。したがって、Java メール API を使用して html メールを送信するか、完全な html をサポートするメール クライアントを探す必要があります。こちらをご覧ください

于 2012-11-27T13:06:12.707 に答える