以下のコードを確認してください。Java メール API も使用しましたが、ユーザー名とパスワードの使用があります。電子メールの送信またはキャンセルのステータスを取得する別の方法はありますか。また、Androidでのメールの送信状況やキャンセル状況の処理方法を教えてください。
Intent emailActivity = new Intent(Intent.ACTION_SEND);
// set up the recipient address
emailActivity.putExtra(Intent.EXTRA_EMAIL, new String[] { to });
// set up the email subject
emailActivity.putExtra(Intent.EXTRA_SUBJECT, subject);
// you can specify cc addresses as well
// email.putExtra(Intent.EXTRA_CC, new String[]{ ...});
// email.putExtra(Intent.EXTRA_BCC, new String[]{ ... });
// set up the message body
emailActivity.putExtra(Intent.EXTRA_TEXT, message);
emailActivity.setType("message/rfc822");
startActivityForResult(Intent.createChooser(emailActivity,
"Select your Email Provider :"), 1000);