Hi,
When using the provided examples on IOS I don’t receive the email. I am using build 2843 on OSX latest. IOS 9.2
local options = { to = { "myemail@address.com" }, subject = "My High Score", isBodyHtml = true, body = "\<html\>\<body\>I scored over \<b\>9000\</b\>!!! Can you do better?\</body\>\</html\>", attachment = { } } native.showPopup( "mail", options )
with these build.settings
-- -- For more information on build.settings see the Corona SDK Build Guide at: -- http://docs.coronalabs.com/guide/distribution/buildSettings/index.html -- settings = { plugins = { ["CoronaProvider.native.popup.activity"] = { publisherId = "com.coronalabs", supportedPlatforms = { iphone=true, }, }, }, }
What happens is that the email popup shows, the relevant data is there like email address etc.
After sending the email nothing arrives in the mailbox.
When running on Android it works.
What am I missing here?