hi there
i have set up mail form for my website so users can email right from my website and i am using perl mailform.pl for mail form , it seems that everything works fine except i don’t receive any mail
any suggestions:
bellow is a code for my AS i thought maybe there is something to do with it .
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 = "mymail@msn.com";
obj.subject = “comments”;
obj.comments = comments.text;
userComments.sendAndLoad(“http://mysite.com/cgi-bin/formmail.pl”, userComments, “POST”);
gotoAndStop(“wait”);
}
thank you very much