I want to Place content like
- Name
- Pass
- Email
to the email content. how to do this...?
I tried this but not working.
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "First Name : " + fname.getText().toString());
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "Last Name : " + lname.getText().toString());
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "Email : " + email.getText().toString());
Thanks in advance..!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…