02-22-2012 01:02 PM
Hi community,
In light of the latest OS2.0 update, I would like to raise the painful question about Playbook native e-mail client capabilities. Is there a way to integrate sharing through e-mail from AIR application? Is there some API?
Ported Android application with sharing via e-mail works perfectly![]()
And I realy want to add this functionality to air playbook app.
Thank you.
Solved! Go to Solution.
02-22-2012 01:26 PM
I haven't tested this, but as a potential workaround (should there not be a native/AIR way to do this)... an HTML mailto: link works to launch the Messages app... so you might be able to use navigateToURL to go to: "mailto:someone@example.com?subject=Woah!&body=Eve
02-22-2012 01:52 PM
Its working!!!![]()
Thank you very much!!!
Only one row of code:
navigateToURL(new URLRequest("mailto:someone@example.com?subject=Woah!&body=Everybody was Kung Fu fighting!"));
It opens native e-mail client window like I need.
Thanks again.
02-23-2012 06:09 AM
02-23-2012 06:22 AM
02-23-2012 06:23 AM
02-23-2012 08:11 AM
02-23-2012 10:39 AM
02-23-2012 11:00 AM