android exportando para csv e enviando como anexo de email

Vi vários tópicos neste site discutindo sobre o envio de email com anexos no Android. Eu tentei todos os métodos discutidosAqu, Aqu eAqu.

Estou criando um arquivo CSV via código e salvando esse arquivo no armazenamento interno do Android. Quero enviar este arquivo como anexo em um email. Bem, o email está sendo enviado, estou recebendo sem anexo. Foi isso que eu fiz.

String columnString         =   "\"Person\",\"Gender\",\"Street1\",\"PostOfice\",\"Age\"";
String dataString           =   "\"" + currentUser.userName +"\",\"" + currentUser.gender + "\",\"" + currentUser.street1 + "\",\"" + currentUser.poNumber.toString() + "\",\"" + currentUser.age.toString() + "\"";
String combinedString       =   columnString + "\n" + dataString;
File file                   =   new File(this.getCacheDir()+ File.separator + "Data.csv");
try {
    FileOutputStream out    =   new FileOutputStream(file);
    out.write(combinedString.getBytes());
    out.close();
} catch (IOException e) {
    Log.e("BROKEN", "Could not write file " + e.getMessage());
}   
Uri u1                      =   Uri.fromFile(file);

Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_SUBJECT, "Person Details");
sendIntent.putExtra(Intent.EXTRA_STREAM, u1);
sendIntent.setType("text/richtext");
startActivity(sendIntent);

Eu tentei alterar as configurações do mime para "text / html" e "text / richtext" etc. Mas ainda não temos sorte. Alguém pode me dizer o que estou fazendo de errado?

questionAnswers(5)

yourAnswerToTheQuestion