ボタンをクリックすると、次のコードを使用して電子メールを開始し、データベース クエリからのデータを入力します。
問題は、ボタンをクリックするとポップアップする「メールを送信...」ダイアログで、次のオプションしか提供されないことです。
* Evernote - create note
* Gmail
* Skype
仕事用の Microsoft Exchange サーバー (メインの電子メール クライアント) 経由でこれを送信する必要がありますが、これは提供されません (ただし、Web ハイパーリンクまたは他のアプリケーションの同様のボタンをクリックすると提供されます)。
private void sendEmail(String recipient, String subject, String message) {
try {
final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("plain/text");
if (recipient != null) emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{recipient});
if (subject != null) emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject);
if (message != null) emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, message);
startActivity(Intent.createChooser(emailIntent, "Send mail..."));
} catch (ActivityNotFoundException e) {
// cannot send email for some reason
}
}
何か案は?