Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/04/2008, 13:36
andruxo
 
Fecha de Ingreso: abril-2008
Mensajes: 4
Antigüedad: 16 años, 10 meses
Puntos: 0
Re: Problema con la funcion mail

Deberias poner como tienes el código de PHP
quizás este te sirva

Código:
<?php
	$sendTo = "[email protected]";
	$subject = $_POST["asunto"];
	$headers = "From: " . "tudominio";
	$headers .= "<" . $_POST["email"] . ">\r\n";
	$headers .= "Reply-To: " . $_POST["email"]; 
	$message = $_POST["cuerpo"];
	mail($sendTo, $subject, $message, $headers);
	echo "estado=Mensaje Enviado";
?>
Ahora si es problema del Keyframe

Código:
var envio_lv:LoadVars = new LoadVars();
var recibir_lv:LoadVars = new LoadVars();

function enviarMail() {
	envio_lv.asunto = asunto_txt.text;
	envio_lv.email = email_txt.text;
	envio_lv.cuerpo = cuerpo_txt.text;
	envio_lv.sendAndLoad("email.php", recibir_lv, "POST");


}

recibir_lv.onLoad = function(exito) {
	if (exito) {
		estado_txt.text = this.estado;
	} else {

		estado_txt.text = "Error en la aplicación de correo";
	}
};
Ojala te funcione