I'm new to firemonkey and I think my question is simple. I have a table in sqlite with some info and I exported this data to a txt. Now I want to email this txt. How do I share this file on android?
I'm new to firemonkey and I think my question is simple. I have a table in sqlite with some info and I exported this data to a txt. Now I want to email this txt. How do I share this file on android?
There is a project in github that does exactly what you need, follow the link below. This is a procedure that receives as a parameter the recipient / copy emails, subject, email text and attachments:
wwEmail procedure ( Recipients: Array of String; ccRecipients: Array of String; bccRecipients: Array of String; Subject, Content, AttachmentPath: string; mimeTypeStr: string = '');
The project URL is: link