I need to provide feature for users where users can share some data by sending email. I used below code.
Intent emailIntent = new Intent(android.content.Inte
Try adding the EXTRA_EMAIL to your intent, maybe bluetooth can be connected to ACTION_SEND but not to the same action if an email is to be send.
See here:
http://developer.android.com/reference/android/content/Intent.html#ACTION_SEND
and here
http://developer.android.com/reference/android/content/Intent.html#EXTRA_EMAIL
Just a rough guess ...