Android Question Email problem

anaylor01

Well-Known Member
Licensed User
Longtime User
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)
 
Top