Android Question Get status from email application after intent

bjf

Member
Licensed User
Longtime User
Hello.

In my project i use the default mail app (Gmail) to send created files as attachment(s) thru:

B4X:
    Dim Message As Email
    Message.To.Add(Reciever)
    Message.Body = Text
    Message.Subject = Title
    Message.Attachments.AddAll(lst2)
   
    StartActivity(Message.GetIntent)

After the mail app is finished sending the files i wish to rename and archive the files sent as attachments.
Is there any way to know when Gmail is done sending the files?
 

peacemaker

Expert
Licensed User
Longtime User
Why not to send a second file copy ?
 
Upvote 0
Top