How to send csv file as attachment in android?

Hi I am developing an android application with email functionality. Here I need to send a CSV file from the path / data / mypackage / files folder. I store my csv file there. It keeps good.My there the size of the csv file is only 245 bytes. But when I tried to send this file, all android post functions show the message "File is too big to attach ..".

Here is my code:

String filelocation="file:///data/data/my package/files/excerDB.zip";   
            final Intent emailIntent = new 

    Intent(android.content.Intent.ACTION_SEND);           
                emailIntent .setType("plain/text");             
                emailIntent .putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{"purpletalk.raghu@gmail.com"});             
                emailIntent .putExtra(android.content.Intent.EXTRA_SUBJECT, "Attendence Report");             
                emailIntent .putExtra(android.content.Intent.EXTRA_STREAM, Uri.parse(filelocation));


            startActivity( emailIntent);

      

But that doesn't work for me. Please advise me how can I send the file as a mail attachment in my attachment.

+3


source to share


1 answer


Hope this code helps u

String FILE = Environment.getExternalStorageDirectory() + File.separator
            + "Foldername";
Intent sendIntent = new Intent(android.content.Intent.ACTION_SEND);
        // sendIntent.setType("text/html");
        sendIntent.setType("application/csv");
        sendIntent.putExtra(android.content.Intent.EXTRA_EMAIL, "");
        sendIntent.putExtra(Intent.EXTRA_SUBJECT, "");
        sendIntent.putExtra(Intent.EXTRA_TEXT, "");
        String temp_path = FILE + "/" + "Filename.csv";
        File F = new File(temp_path);
        Uri U = Uri.fromFile(F);
        sendIntent.putExtra(Intent.EXTRA_STREAM, U);
        startActivity(Intent.createChooser(sendIntent, "Send Mail"));

      



Enjoy this code!

0


source







All Articles