Hi,
I'm new to Gideros Mobile and want to know there's a function within Gideros that allow one to send email or SMS. I have tried the OpenURL() but it does not to trigger the email dialog in my test App running on IOS 6 although it pops up the email dialog when running on Gideros Player on my Mac.
Is there a similar function to Corona SDK's native.showPopup()
http://www.coronalabs.com/blog/2012/01/03/composing-email-and-sms-in-corona/I need this function to send emails from within the app to others people using their own email accounts and pre-populate with some HTML message.
Thanks for you help.
Comments
http://howto.oz-apps.com/2012/09/tweet-tweet-right-from-your-lua-app.html
http://howto.oz-apps.com/2012/09/get-developing-for-free-enterprise.html
and some other articles
The advantage of using this is that it will not break your app to display the dialog and it will allow for continuing with your app once you are done with the dialog by selecting send/cancel
You can use this code for creating mail
I thought I had an article on how to use this on http://howto.oz-apps.com so maybe soon...
Likes: krisis
Author of Learn Lua for iOS Game Development from Apress ( http://www.apress.com/9781430246626 )
Cool Vizify Profile at https://www.vizify.com/oz-apps
I did hear about WaxPlug and am glad to learn that it will solve my issue for sending email within the IOS functionality. Will be trying it out and your code snippet
BTW, is there a similar functionality for the Android platform that any one knows of?
Help appreciated.
http://www.giderosmobile.com/forum/discussion/2319/jvbridge-plugin-android/p1
@Pschew with JVBridge plugin eventhough you can send SMS without showing dialog
(C* only show compose dialog and user can send or dispose it )
In order to get it to work I also needed to add the MessageUI framework and #import in AppDelegate.m.