I used the code below to create an e-mail with subject and body and select only the e-mail apps to send the message.
It works fine... until now.
The Gmail app don't include the subject and body text anymore.
I tried with the default mail app of the device and works.
Any sugestion to fix this problem with Gmail app?
Or select only the e-mails apps using the intent ACTION_SEND?
Thanks in advance.
It works fine... until now.
The Gmail app don't include the subject and body text anymore.
I tried with the default mail app of the device and works.
B4X:
Dim intent1 As Intent
intent1.Initialize("android.intent.action.SENDTO", "mailto:mymail@server.com")
intent1.putExtra("android.intent.extra.SUBJECT", "Subject of the e-mail")
intent1.putExtra("android.intent.extra.TEXT", "Body/content of the e-mail")
StartActivity(intent1)
Or select only the e-mails apps using the intent ACTION_SEND?
Thanks in advance.