how to add new line to email contents?

后端 未结 3 1696
暗喜
暗喜 2020-12-11 07:42

I want to Place content like

  1. Name
  2. Pass
  3. Email

to the email content. how to do this...?

I tried this but not working.

3条回答
  •  臣服心动
    2020-12-11 08:04

    Create a single String containing everything including "\n" for every line-break.

    StringBuilder emailBody = new StringBuilder("First Name : ");
    emailBody.append(fname.getText()).append("\n");
    emailBody.append("Last Name : ").append(lname.getText()).append("\n");
    emailBody.append("Email : ").append(email.getText());
    emailIntent.putExtra(Intent.EXTRA_TEXT   , emailBody.toString());
    

提交回复
热议问题