Firemonkey file sharing

0

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?

    
asked by anonymous 31.07.2017 / 14:22

1 answer

0

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

    
31.01.2018 / 18:16