AndreyPozdnyakov
Member
As the application runs, I send an email.
I need to wait for the email sending process to complete before my application can continue.
How can I tell if an email has already been sent?
Thank you in advance.
B4X:
email.To.Add(emailAddress)
email.Subject = "Program crashed"
email.Body = sBody
StartActivity(email.GetIntent)
I need to wait for the email sending process to complete before my application can continue.
How can I tell if an email has already been sent?
Thank you in advance.