este codigo esta en un btn.release()
else {
form_lv = new LoadVars();
form_lv.nombree = nom;
form_lv.correoe = correo;
form_lv.juegoe = juego;
form_lv.contactoe = contacto;
form_lv.mensajee = mensaje;
form_lv.sendAndLoad("http://www.mi dominio.com./send.php",form_lv,POST);
estado.text = "Enviando Mensaje..";
nombre.text = "";
emaili.text = "";
tel.text = "";
eltexto.text = "";
form_lv.onLoad = function() {
if (this.estatus == "ok") {
estado.text = "Tu mensaje fue enviado...";
nombre.text = "";
emaili.text = "";
juegoelec.text = "";
tel.text = "";
eltexto.text = "";
} else {
mensaje_txt.text = "Problemas con el servidor Intentalo de Nuevo";
}
};
}
}
}
}
}
}
y el php es este
<?php
// Funciona para Windows y UNIX. Formato Texto Plano
// El archivo class.smtp.inc no necesita cambios.
// El archivo PHP es el que debe de ser modificado para recibir
// las variables de la forma en HTML.
include('class.smtp.inc');
header('Content-Type: text/plain');
$hoy = date ("d F Y");
$message = "\t\t\t$hoy\n\n";
$message = $message . "Nombre: $nombre\n";
$message = $message . "Telefono: $tel\n\n";
$message = $message . "Comentarios:\n";
$message = $message . "$comentarios\n\n";
$message = $message . "Operaciones Triara.";
/***************************************
** Setup some parameters which will be
** passed to the smtp::connect() call.
***************************************/
$params['host'] = 'server';
$params['port'] = valor; // The smtp server port
$params['helo'] = 'mydominio.com'; // Su dominio.
$params['auth'] = TRUE; // Whether to use basic authentication or not
$params['user'] = '[email protected]'; // Username for authentication (no usar el de webmaster por seguridad)
$params['pass'] = 'password_de_cuenta'; // Password for authentication
/***************************************
** These parameters get passed to the
** smtp->send() call.
***************************************/
$send_params['recipients'] = array('[email protected]'); // The recipients (can be multiple), separados por coma.
$send_params['headers'] = array(
'From: "[email protected]" <[email protected]>', // Headers
'To: [email protected]', 'Subject: Envio de Correo'
);
$send_params['from'] = '[email protected]'; // This is used as in the MAIL FROM: cmd
// It should end up as the Return-Path: header
$send_params['body'] = $message; //Message // The body of the email
/***************************************
** The code that creates the object and
** sends the email.
***************************************/
echo "&estatus=ok&";
if(is_object($smtp = smtp::connect($params)) AND $smtp->send($send_params)){
Header("Location: http://www.mydominio.com/mail/ok.htm");
exit;
// Any recipients that failed (relaying denied for example) will be logged in the errors variable.
//print_r($smtp->errors);
}else{
Header("Location: http://www.mydominio.com/mail/bad.htm");
exit;
// The reason for failure should be in the errors variable
//print_r($smtp->errors);
}
?>