[iOS] activity.showPopup -> Send email -> No subject

Hello everyone!

Does anybody know how to add subject when send email through activity.showPopup( “activity”, options ) [iOS]?

Here is my code:

[lua]

local activity = require( “CoronaProvider.native.popup.activity” )

local textItems = {

    { type = “string”, value = “Text message!” },

    { type = “url”, value = “https://www.test.org” },

}

local exlcudeOption = {

“UIActivityTypePrint”, 

“UIActivityTypeAssignToContact”, 

“UIActivityTypeSaveToCameraRoll”, 

“UIActivityTypeAddToReadingList”, 

“UIActivityTypeAirDrop”

}

local options = { items=textItems, excludedActivities=exlcudeOption, listener=activityPopupListener }

activity.showPopup( “activity”, options )

[/lua]

Thanks!!!

Same problem with Android…

Option “subject” is being ignored.

Here is my code:

[lua]

if (native.canShowPopup(“social”, “share”) == true) then

native.showPopup(“social”, 

{

        message = “Text\n”,

        subject = “Subject”,

        url = “https://www.test.org”,

        listener = listener,

})

end

[/lua]

Same problem with Android…

Option “subject” is being ignored.

Here is my code:

[lua]

if (native.canShowPopup(“social”, “share”) == true) then

native.showPopup(“social”, 

{

        message = “Text\n”,

        subject = “Subject”,

        url = “https://www.test.org”,

        listener = listener,

})

end

[/lua]