Reputation: 21
Is there a way to open your e-mailclient from adobe air with mail attachment or else with a prefilled htmltext?
Thanks!
Upvotes: 0
Views: 1008
Reputation: 345
Not sure if you can add an attachment like this.
You can prefill subject, body, cc, etc - e.g.
import flash.net.*;
public function mailto():void{
var htmlstr:String = '<b>test</b>';
var url = "mailto:[email protected]?subject=test&body="+htmlstr;
var urlReq = new URLRequest(url);
navigateToURL(urlReq);
}
Upvotes: 1