Mailing in flex app using javascript functions: the first thing here is that u should know that there is a function “mailto” with parameter e-ID, then its simple include it the URLRequest and call navigatoURL method to raise the function. as shown below
private function mailme():void
{
var u:URLRequest = new URLRequest(“mailto:” + ti1.text);
navigateToURL(u,”_self”);
}
<mx:TextInput id=”ti1″/> — this contains the e-ID and the button to call mailme()
<mx:Button click=”mailme()”/>
thats all it will raise a outlook express dialog and with e-ID.

Cool sample.
is there a way to make it pop in a new window?
Hi, try this
navigateToURL(u,”_blank”);
regards,
kumar.
Hi
Is there any mail template available in flex.
Please Help me
no, there’s nothing like that.
so far so good, now how would i make some text appear in bold. what if i wanted to include an image in the body. How would i go about doing that?