non riesco ad inviare le email tramite un formail ho pensato che il problema fosse il codice php, ma dopo una serie di controlli il codice sembra corretto, allora ho pensato che forse il problema è
l'actionscript

questo è corretto??


on (release) {
if (!_root.pages.contact.Name.length) {
_root.pages.contact.Status = "INSERISCI IL TUO NOME";
} else {
if (!_root.pages.contact.Email.length || _root.pages.contact.Email.indexOf("@") == -1 || _root.pages.contact.Email.indexOf(".") == -1) {
_root.pages.contact.Status = "INSERISCI UN VALIDO INDIRIZZO E-MAIL";
} else {
if (!_root.pages.contact.Message.length) {
_root.pages.contact.Status = "INSERISCI IL TUO MESSAGGIO";
} else {
Name = _root.pages.contact.Name;
Email = _root.pages.contact.Email;
Message = _root.pages.contact.Message;
Status = "";
loadVariablesNum("st_mailform_script.php",0,'POST' );
_root.pages.contact.gotoAndPlay("submitted");
}
}
}
}