Re: [flexcoders] How to attach a local file to an email with URLRequest from AIR

2010-03-30 Thread Peeyush Tuli
mailto protocol does not officially support attachments, as mentioned below - http://msdn.microsoft.com/en-us/library/aa767737.aspx Unofficially many versions of outlook till 2003 used to support it but outlook 2007 does not - http://social.msdn.microsoft.com/Forums/en-US/winforms/thread/80d33aae

[flexcoders] How to attach a local file to an email with URLRequest from AIR

2010-03-26 Thread breizo
I am trying to send an email through the default local email system with URLRequest. Tried the example below with no success. Also tried to add " around s with no more success... Has anybody done it before? Thanks var file:File = File.documentsDirectory("myfile.txt"); var s:String = file.url;