Continuando con la segunda parte. En el siguiente vídeo tutorial veremos la creación del archivo gracias.php Este archivo es el intermediario entre el formulario y el correo electrónico.
En el siguiente video tutorial trabajaremos con el FTP para subir el archivo gracias.php al hosting.
También veremos la ruta para que el formulario se comunique con el archivo gracias.php
Aquí les dejo en código para que copien y peguen a un documento html de Dreamweaver toda la programación del archivo gracias.php
$nombre = $_POST[nombre];
$correo = $_POST[correo];
$consulta = $_POST[consulta];
$comentario = $_POST[comentario];
$emailbody = “\nSe enviaron los siguientes datos: \n\n”;
$emailbody .= “Nombre…………………: $nombre\n”;
$emailbody .= “Correo electrónico………: $correo\n”;
$emailbody .= “Consulta……………….: $consulta\n”;
$emailbody .= “Comentario……………..: $comentario\n”;
$emailbody .= “======================================\n”;
$emailto = “”;
$emailfromaddr =”$correo”;
$emailrepply = $correo;
$emailfromname = $nombres;
$emailsubject = “Hola Nelcy!! tienes un mensaje”;
// The body can be as long as you wish, and any combination of text and variables
// Here we are forming one large header line
// Every header must be followed by a \n except the last
$emailheaders = “From: $emailfromname <$correo>\r\n”;
$emailheaders .= “Reply-To: $emailrepply\n”;
// I write myself in here as a BCC so I can make sure no one is abusing the script
//$emailheaders .= “Bcc: $emailfromaddr\n”;
$emailheaders .= “X-Mailer: PHP/” . phpversion() . “\n”;
// Note the Sender-IP. I write this one in just as a small security percaution
$emailheaders .= “X-Sender-IP: $REMOTE_ADDR”;
// Because I predefined all of my variables, this mail() function looks nice and clean hmm?
mail( $emailto,$emailsubject, $emailbody, $emailheaders);
?>
Para visitar la web donde se hizo el procedimiento. Visite: www.nelcyheidinger.com
Para realizar el procedimiento los invito a ver el siguiente vídeo tutorial.