//filePath - file at phone.
public void send(String emailTo, String subject, String body, String filePath) {
Intent email = new Intent(android.content.Intent.ACTION_SEND);
email.setType("message/rfc822");
email.putExtra(Intent.EXTRA_EMAIL, new String[]{emailTo});
email.putExtra(Intent.EXTRA_SUBJECT, subject);
email.putExtra(Intent.EXTRA_TEXT, body);
if (filePath != null)
email.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new StorageFiles(ctx).getFile(filePath)));
try {
ctx.startActivity(Intent.createChooser(email, "Choser title"));
} catch (android.content.ActivityNotFoundException ex) {
}
}
scoreTeamA = 0;
scoreTeamB = 0;