Hello.
I checked iOS “Mail” app and it works well.
local textItems = {
{ type = “string”, value = “Hello World!” },
{ type = “string”, value = “Good night, and good luck.” },
}
local options = { items=textItems, listener=popupListener }
native.showPopup( “activity”, options )
When I use this code in my project, the app shows a popup with available mailing apps.
But that’s not the correct result.
In Android versioned app, the app send an email with images to others directly, but with this code in iOS, I have to type “To” and “Subject”.
I want to set those information in the code and send the mail directly to the others.
Is there any way to do this job?
Thank you very much.