[QUOTE=pateketrueke;2604912]por favor,
documentate:
gracias por la ayuda
dejo un codigo que encontre hay que editar el php ini para poner el servidor smtp que se tenga intalado
Código PHP:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
</head>
<body>
<form action="contactenos.php" method="post">
Nombres: <input name="nombres" type="text"><br>
Empresa: <input name="empresa" type="text"><br>
E-mail: <input name="email" type="text"><br>
Telefono: <input name="telefono" type="text"><br>
Comentarios:
<textarea name="comentarios" cols="30" rows="5">
</textarea><br>
<input name="action" type="hidden" value="send">
<input name="enviar" type="submit" value="Enviar">
</form>
</body>
</html>
<?php
//".$_POST['email'].
if (isset($_POST['action'])) {
$dest = "[email protected]";
$head = "From: consulta \r\n";
$head.= "To: [email protected]\r\n";
// Ahora creamos el cuerpo del mensaje
$msg = "------------------------------- \n";
$msg.= " Comentarios \n";
$msg.= "------------------------------- \n";
$msg.= "NOMBRE: ".$_POST['nombres']."\n";
$msg.= "EMPRESA: ".$_POST['empresa']."\n";
$msg.= "EMAIL: ".$_POST['email']."\n";
$msg.= "TELEFONO: ".$_POST['telefono']."\n";
// $msg.= "ANEXO: ".$_POST['anexo']."\n";
$msg.= "HORA: ".date("h:i:s a ")."\n";
$msg.= "FECHA: ".date("D, d M Y")."\n";
// $msg.= "IP: ".$REMOTE_ADDR."\n";
$msg.= "------------------------------- \n\n";
$msg.= $_POST['comentarios']."\n\n";
$msg.= "------------------------------- \n";
$msg.= " Mensaje creado por wladtepes \n";
// Finalmente enviamos el mensaje
if (mail($dest, "Comentarios", $msg, $head)) {
$aviso = "Su mensaje fue enviado.";
} else {
$aviso = "Error de envío.";
}
}
?>