我目前正在開發一個android項目,並且添加了一個首選項以便能夠向我發送電子郵件。我正在使用ACTION_SENDTO
意圖發送電子郵件,但它的回來,並說No apps can perform this action
。通過意向發送電子郵件
下面是我使用
Intent intent = new Intent(Intent.ACTION_SENDTO);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_EMAIL, "[email protected]");
intent.putExtra(Intent.EXTRA_SUBJECT, "Check out this android app");
intent.putExtra(Intent.EXTRA_TEXT, "Check out this new app in the Google Play Store. Its from Boardies IT Solutions and is called Boardies Password Manager. You can find it at https://play.google.com/store/apps/details?id=com.BoardiesITSolutions.PasswordManager");
startActivity(Intent.createChooser(intent, "Send Email"));
感謝代碼任何幫助,您可以提供
你是在模擬器或真實設備嘗試? –
它在一個真實的設備上。還安裝了gmail – Boardy
您在發送電子郵件之前是否登錄? –