A anaylor01 Well-Known Member Licensed User Longtime User May 15, 2016 #1 I am getting the following error when trying to send an email. android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.SEND_MULTIPLE typ=text/plain flg=0x20000 (has extras) } I copied the code directly from the below. https://www.b4x.com/android/help/phone.html#email Here is the code. B4X: Dim Message As Email Message.To.Add("anaylor01@yahoo.com") Message.Body = "Hello!!!" Message.Subject = "Important message" StartActivity(Message.GetIntent)
I am getting the following error when trying to send an email. android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.SEND_MULTIPLE typ=text/plain flg=0x20000 (has extras) } I copied the code directly from the below. https://www.b4x.com/android/help/phone.html#email Here is the code. B4X: Dim Message As Email Message.To.Add("anaylor01@yahoo.com") Message.Body = "Hello!!!" Message.Subject = "Important message" StartActivity(Message.GetIntent)
Erel B4X founder Staff member Licensed User Longtime User May 15, 2016 #2 Are you testing it on a real device? Upvote 0