Greetings,
I have been calling the phone's email like this.
Is there a way in B4A to send the email from the app without actually displaying the email client on the screen in code?
Thanks.
I have been calling the phone's email like this.
B4X:
Dim msg As Email
msg.Subject = "Song Requests"
msg.Body = EditTextRequestedSongs.Text
msg.To.Add("ultraviproduction@gmail.com")
StartActivity(msg.GetIntent)
Is there a way in B4A to send the email from the app without actually displaying the email client on the screen in code?
Thanks.