Puedes Hacerlo Usando La Funcion sendAndload() De Esta Forma
myObjeto = new LoadVars()
//Defines Tus Variables
//Despues De Las Variables
myObjeto.onLoad = function(success) {
status.text = "EL MAIL YA HA SIDO ENVIADO..." //Este es el mensaje que aparecera en el cuadro de texto "STATUS" Puedes Hacer Que Tu Script PHP Te Tire Una Variable Con El Mensaje Cuando Envie EL Mail Y La Cargas En El "STATUS"
};
myObjeto.sendAndLoad("archivo.php", myObjeto, "POST");
Salud-2