Hello friends, I am using Email object to send an email but when the users clicks on the button it opens the shareing and the user need to select a lot of options. I want to start gmail directly, any solution to that ? See the code:
B4X:
If Not (G.Registrado) Then
Private emlMsg As Email
emlMsg.To.Add("test@server.com")
emlMsg.Subject = "Subject"
emlMsg.Body = "Message body"
StartActivity(emlMsg.GetIntent)
End If