Develop a program to send an email.
Answers
Answered by
1
Answer:
How to send email in android using intent
We can easily send email in android via intent. You need to write few lines of code only as given below
Intent email = new Intent(Intent.ACTION_SEND);
email.putExtra(Intent.EXTRA_EMAIL, new String[]{ to});
email.putExtra(Intent.EXTRA_SUBJECT, subject);
email.putExtra(Intent.EXTRA_TEXT, message);
Example of phone call in android
activity_main.xml
Drag the 2 EditTexts, 1 MultiLine EditText, 3 TextViews and 1 Button from the pallete, and then the file is sended
Explanation:
hope its helpful you
rate me as a brainliast answer
thano you
Similar questions