I am making an app that provides users access to my store. And in this they will input their name number and sizes. I want this information then emailed to me. How do I do this. I have been looking at how to send emails thorugh apps but cant find exactly what I am looking for . I have been trying to add to the following code with little luck.
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); emailIntent.setType("plain/text"); startActivity(emailIntent); Its not much I know. I know how to add a message field and all with
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, aEmailList); emailIntent.putExtra(android.content.Intent.EXTRA_CC, aEmailCCList); emailIntent.putExtra(android.content.Intent.EXTRA_BCC, aEmailBCCList); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "My subject"); But I dont want all that to be their when the Email is sent. I don't want the used to see that, I just want them to see their options which is then made into text and sent