代码:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Script>
<!--[CDATA[
import flash.net.navigateToURL;
import mx.controls.Alert;
private function getUrl():String{
var url:String = "mailto:";
url+=sendTo.text;
url+="?subject="+subject.text;
url+="&body=test"+content.text;
return url;
}
private function newWin():void {
var urlRequest:URLRequest = new URLRequest( getUrl());
navigateToURL(urlRequest, '_self');
}
]]-->
</mx:Script>
<mx:TextInput x="351" y="88" width="592" id="sendTo"/>
<mx:Label x="291" y="90" text="Mail to:" fontWeight="bold"/>
<mx:TextInput x="351" y="116" width="592" id="subject"/>
<mx:Label x="285" y="118" text="Subject:" fontWeight="bold"/>
<mx:Label x="285" y="146" text="Content:" fontWeight="bold"/>
<mx:Button x="351" y="343" label="Send" click="newWin()"/>
<mx:TextArea x="351" y="145" width="592" height="171" id="content"/>
</mx:Application>
演示:
标签:FLEX,演示,代码,实践,发送,邮件 From: https://blog.51cto.com/u_16129500/6354892