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?
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 = "fred@somewhere.com"
Message.To.Add(url)
Message.Subject = "Joe test"
StartActivity(Message.GetIntent)