Mac
Mac

Reputation: 1

mailto with attachments in Flex or AIR applications

How to forward attachment(for example image) from Flex or AIR application to email client? For forwarding email address, body and subject, I use this:

var s:String = "";    
s+= "mailto:";
s+= g.text;               
s+= "?";
s+= "subject=" ;
s+= grup.text;
s+= "&";
s+= "body=";
s+= message.text;                                               
var url:URLRequest=new URLRequest(s);       

navigateToURL( url);

But I don't know what to do for attachment.... Please HELP!

Upvotes: 0

Views: 1407

Answers (1)

Related Questions