Please explain every line of what it does.
Zadolbalsya already with this Intent, nicherta can not understand how it works.
Rather, I theoretically understand that intent causes other activity within an application or in other applications, explicitly or implicitly.
But how, I do not understand.
private void callSendMeMail() { Intent Email = new Intent(Intent.ACTION_SEND); Email.setType("text/email"); Email.putExtra(Intent.EXTRA_EMAIL, new String[]{"mail@mail.com" }); Email.putExtra(Intent.EXTRA_SUBJECT, "ATM_Support"); startActivity(Intent.createChooser(Email, "Отправить сообщение разработчику")); }