-
E Mailer Not Working
On a job where there is a 2.0 AS flash file that is supposed to send an e mail according to the text fields filled out. I am no AS programmer so I was wondering if anyone could take a look at the code and see if I am missing something.
I have helped many from the animation standpoint but code is not my thing! The help is appreciated.
Basically the user fills out a card and the preview is working so I know it is gatheringthe information correctly, when I go to hit send it does nothing.
Here is the code on that frame:
stop();
characters.character.gotoAndStop(frmCharacter);
postcard.txtMessage.text = frmFromMessage;
postcard.txtName.text = '- '+frmFromName;
btn_back.onRelease = function() { gotoAndStop(_currentframe-1); }
btn_sendme.onRelease = function() {
frm = [];
frm['character'] = frmCharacter;
frm['from_name'] = frmFromName;
frm['from_email'] = frmFromEmail;
frm['to_name'] = frmToName;
frm['to_email'] = frmToEmail;
frm['message'] = frmFromMessage;
sgmExchange(frm);
}