hi there
i downloaded a free MailForm.pl from one site and uploaded it into my server into my cgi-bin, when i use mail form in flash MX in the internet it simply doesn’t work. please can anybody walk me through how to use and set up my mailform.pl Please need it so bad. bellow is AS for my mail form I am using MX. I also uploaded a zipped Mailform.pl file in case. Please help us
userComments = new LoadVars();
userComments.onLoad = function(success) {
if (success) {
gotoAndStop(“output”);
} else {
gotoAndStop(“error”);
}
};
function sendComments() {
var obj = userComments;
obj.from = fromEmail.text;
obj.name = fromName.text;
obj.to = "okandy@msn.com";
obj.subject = “comments”;
obj.comments = comments.text;
userComments.sendAndLoad(“http://www.wallpapertools.com/cgi-bin/FormMail.pl”, userComments, “POST”);
gotoAndStop(“wait”);
}