1. ホーム
  2. android

[解決済み] Androidアプリケーションからメールを送信する方法を教えてください。

2022-03-17 07:44:27

質問

Androidでアプリケーションを開発しています。アプリケーションからメールを送信する方法がわかりません。

解決方法を教えてください。

最も良い(そして最も簡単な)方法は Intent :

Intent i = new Intent(Intent.ACTION_SEND);
i.setType("message/rfc822");
i.putExtra(Intent.EXTRA_EMAIL  , new String[]{"[email protected]"});
i.putExtra(Intent.EXTRA_SUBJECT, "subject of email");
i.putExtra(Intent.EXTRA_TEXT   , "body of email");
try {
    startActivity(Intent.createChooser(i, "Send mail..."));
} catch (android.content.ActivityNotFoundException ex) {
    Toast.makeText(MyActivity.this, "There are no email clients installed.", Toast.LENGTH_SHORT).show();
}

そうでなければ、自分でクライアントを書かなければならない。