marthijn. Rotating Header Image

Posts Tagged ‘E-Mail’

How to send an e-mail from your Android app

I’m developing an Android application where the user must be able to send a file stored on the SD Card to a specific e-mail address. By using Android’s Intent class this is very easy. The following code snippet will bring up an e-mail application choose dialog. String filename = "file://" + Environment.getExternalStorageDirectory() + "/file.txt"; String [...]