//Create a variable container
var allVars:URLVariables = new URLVariables();
allVars.name = theName.text;
allVars.email = theEmail.text;
allVars.package = thePackage.text;
allVars.event = theEvent.text;
allVars.date = theDate.text;
allVars.message = theMessage.text;
//Send info to a URL
var mailAddress:URLRequest = new URLRequest("http://www.mx1studio.com/gdform.php");
mailAddress.data = allVars;
mailAddress.method = URLRequestMethod.POST;
sendToURL(mailAddress); |