Sending EMail From Flex App
Check out this mailto: RFC.
var urlRequest : URLRequest = new URLRequest( "mailto:?subject=MySubject&body=MyBody");Make sure to add the _self target to not open a blank browser window.
navigateToURL( urlRequest, "_self" );
Comments