Sunday, February 10, 2008

Sending EMail From Flex App

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

No comments: