I auto-fill the To, Subject, and Body fields, and can send the email.
When I add the attachment Sub, 'ShareMultipleImages', these fields no longer auto-fill but all the attachments are listed.
I enter the To, Subject, and Body fields manually and finally send.
How can I get auto-fill and have the attachments at the same time?
ps: I think I'm using the Phone library without an Intent, is this correct?
thanks in advance
When I add the attachment Sub, 'ShareMultipleImages', these fields no longer auto-fill but all the attachments are listed.
I enter the To, Subject, and Body fields manually and finally send.
How can I get auto-fill and have the attachments at the same time?
B4X:
Sub savTxt_Click
' with Next line, e.To, e.Subject, and e.Body are Not auto-filled but I have Attachments.
' w/o Next line, e.To, e.Subject, and e.Body are auto-filled but No Attachments.
ShareMultipleImages(images, Starter.strSharedFolder)
Dim e As Email
e.To.Add(EditText1.text)
e.Subject = "testing23"
e.Body = "test23"
StartActivity(e.GetIntent)
' ShareMultipleImages(images, Starter.strSharedFolder)
End Sub
thanks in advance