how to add new line to email contents?

后端 未结 3 1691
暗喜
暗喜 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:02

    You can simply do like this

    String output = "FirstName :\nLastName :\nEmail ";
    

    and add the string to the email content:

    emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, output);
    

提交回复
热议问题