coldfusion.service.Mail, how to send in action script
how do I send mail in action script using the coldfusion.service.Mail, class.
I've set up my confix in MXML and then try this:
var mail:Mail = new Mail();
mail.server = conf.cfServer;
mail.to = "nikos@test.co.uk";
mail.subject = "FX ";
mail.content = emailText;
mail.from= "noreply@test.co.uk";
how do I send the mail?
