Has anyone been success in sending an email from within Flash MX? I am trying to launch the email client & being able to add a subject & body information. I have been trying all kinds of combinations with no luck
Also, I have an input box labeled recipient so when I launch the mail client I want the recipient email address to automatically appear in the To line.
[AS]submitbutton.onPress = function() {
var recipient = “mailto:”+recipientText;//recipientText is the instance name of your input textfield
getURL(recipient);
};[/AS]