4 ŞUBAT 2010, PERŞEMBE
Nasıl benim Android uygulaması e-posta gönderebilir miyim?
Android için bir uygulama yazıyorum. Nasıl bir e-posta gönderebilir miyim?
CEVAP
4 ŞUBAT 2010, PERŞEMBE
(Ve en kolay) en iyi yolu Intent
: Bir kullanmaktır
Intent i = new Intent(Intent.ACTION_SEND);
i.setType("message/rfc822");
i.putExtra(Intent.EXTRA_EMAIL , new String[]{"recipient@example.com"});
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();
}
Aksi takdirde kendi istemci yazmak zorundasın.
Bunu Paylaş:
Nasıl Java uygulaması GMail, Yahoo vey...
Nasıl benim Android uygulaması profil ...
Nasıl Android bir URL açmak'benim...
Nasıl benim Android uygulaması crash-v...
Nasıl bir iPhone uygulamasından posta ...