So I want the body of my email to reference 5 Edit texts. I already have those set up and I want the body to be like:
Name: [Name]
Phone: [Phone]
Detailed Description: [Description]
So all I need help with is telling it to paste the strings like above. My code Currently as far as Body goes:
emailIntent.putExtra(Intent.EXTRA_TEXT, Name);
emailIntent.putExtra(Intent.EXTRA_TEXT, Phone);
emailIntent.putExtra(Intent.EXTRA_TEXT, Email);
emailIntent.putExtra(Intent.EXTRA_TEXT, BigDesc);