Foros del Web » Programando para Internet » PHP »

Formularios

Estas en el tema de Formularios en el foro de PHP en Foros del Web. Deseo que los datos recopilados en mi formulario, sean enviados a mi correo sin tener que usar outlook. Hasta ahora, lo que he leido, debo ...
  #1 (permalink)  
Antiguo 02/04/2008, 08:30
 
Fecha de Ingreso: febrero-2008
Mensajes: 11
Antigüedad: 16 años, 2 meses
Puntos: 0
Información Formularios

Deseo que los datos recopilados en mi formulario, sean enviados a mi correo sin tener que usar outlook.
Hasta ahora, lo que he leido, debo hacerlo en PHP, me podran ayudar, desconosco totalmente de esto. Necesito el código para lograr el envio de mi formulario.
GRACIAS
  #2 (permalink)  
Antiguo 02/04/2008, 08:40
Avatar de T4ke0veR  
Fecha de Ingreso: agosto-2007
Ubicación: Quito - Ecuador
Mensajes: 1.720
Antigüedad: 16 años, 8 meses
Puntos: 28
Re: Formularios

Saludos tironemota
puedes hacer esto

haces tu archivo contacto.php o como se llame
e incluyes tu formulario
luego pasas a hacer una pagina q se llame email.php y le ingresas este include

email.php
Código PHP:
<?php
/***************************************************\
 * PHP 4.1.0+ version of email script. For more
 * information on the mail() function for PHP, see
 * http://www.php.net/manual/en/function.mail.php
\***************************************************/


// First, set up some variables to serve you in
// getting an email.  This includes the email this is
// sent to (yours) and what the subject of this email
// should be.  It's a good idea to choose your own
// subject instead of allowing the user to.  This will
// help prevent spam filters from snatching this email
// out from under your nose when something unusual is put.

$sendTo "[email protected]";
$subject "asunto";

// variables are sent to this PHP page through
// the POST method.  $_POST is a global associative array
// of variables passed through this method.  From that, we
// can get the values sent to this page from Flash and
// assign them to appropriate variables which can be used
// in the PHP mail() function.


// header information not including sendTo and Subject
// these all go in one variable.  First, include From:
$headers "From: "$_POST["nombre"] ."     " $_POST["empresa"] . "  <" $_POST["email"] .">\r\n";
// next include a replyto
$headers .= "Reply-To: " $_POST["email"] . "\r\n";
// often email servers won't allow emails to be sent to
// domains other than their own.  The return path here will
// often lift that restriction so, for instance, you could send
// email to a hotmail account. (hosting provider settings may vary)
// technically bounced email is supposed to go to the return-path email
$headers .= "Return-path: " $_POST["email"];

// now we can add the content of the message to a body variable
$message =  "Nombre: ".$_POST["nombre"] ."\nApellido: " $_POST["apellido"] ."\nE-mail: ".$_POST["email"] ."\nComentarios: ".$_POST["comentarios"] ." ";


// once the variables have been defined, they can be included
// in the mail function call which will send you an email
mail($sendTo$subject$message$headers);

include(
"thankyou.php");

?>
thankyou.php
Código PHP:
<style type="text/css">
<!--
.style2 {color: #333333}
.style3 {
    font-family: "Trebuchet MS";
    font-size: 14px;
}
-->
</style>
<link href="css/estilos.css" rel="stylesheet" type="text/css" />
<p class="style2"><span class="textoQUIENES">Gracias Estimado(a) </span><span class="tituloPROD"><? echo $nombre?></span><span class="textoQUIENES">, pronto nos podremos en contacto con usted. </span><br>
  <br>
 </p>
espero t sirva... saludos y suerte
__________________
Diseño gráfico, Web, imagen corporativa, publicidad ...
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 23:58.