Cannot form with mailTo and navigateToURL (AS3) email with non-empty Subject and Body fields

1.1k Views Asked by At

Code AS3

var emStr:String="mailto:[email protected]?subject=RD&body=re" 
var email:URLRequest= new URLRequest(emStr) 
navigateToURL(email)

does not "distribute" string emStr between address, Subject, body of email, but place overall string into address field.

Any ideas!

1

There are 1 best solutions below

0
On

Your code worked for me on Mac OS with Chrome/Safari browsers and the built in Mac mail client (called "Mail").

This might depend on various things: OS, browser, Flash Player version, mail application

I would recommend trying some different combinations of the above. You might also want to specify which OS, browser, Flash Player, and mail client you're using.

Finally, you may want to try using the URLVariables class, instead of putting the subject/body in the query string:

var emStr:String="mailto:[email protected]";
var variables:URLVaraibles = new URLVariables();
variables.subject = "This is the subject!";
variables.body = "This is the body."; 
var email:URLRequest= new URLRequest(emStr);
email.data = variables;
navigateToURL(email);