Android Question Email intent :: default email client

JoeR

Member
Licensed User
Longtime User
I am using the phone library to send an email.

The following code works, but the user has to choose a client from a long list.

How can I force it to use the default email client?

B4X:
Dim Message As Email
Dim url As String

url = "[email protected]"
Message.To.Add(url)
Message.Subject = "Joe test"
StartActivity(Message.GetIntent)
 
Top