Login   Register  
PHP Classes
elePHPant
Icontem

File: enviar.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Christian Petersen  >  qnuxform  >  enviar.php  >  Download  
File: enviar.php
Role: Auxiliary script
Content type: text/plain
Description: php
Class: qnuxform
Compose and output simple HTML contact forms
Author: By
Last change:
Date: 2013-07-21 14:42
Size: 1,657 bytes
 

Contents

Class file image Download
<?php

$nombre 
$_POST["nombre"];
$apellido $_POST["apellido"];
$email $_POST["correo"];
$telefono $_POST["telefono"];
$consulta $_POST["consulta"];

$para "email@domain"// destinatary 
$asunto "Testing"// subject of the email
$contenido .= "<table align=center width='500px' border='1' cellpading='0' cellspacing='0'>";  // message in a table
$contenido .= "<tr><td colspan=2>Esta es una Consulta hecha desde su sitio web</td></tr>";
$contenido .= "<tr><td width=100 align=right><b>Nombre: </b></td><td align=left>".$_POST["nombre"]."</td></tr>";
$contenido .= "<tr><td width=100 align=right><b>Apellido: </b></td><td align=left>".$_POST["apellido"]."</td></tr>";
$contenido .= "<tr><td width=100 align=right><b>Teléfono: </td><td align=left>".$_POST["telefono"]."</td></tr>";
$contenido .= "<tr><td width=100 align=right><b>Email: </td><td align=left>".$_POST["correo"]."</td></tr>";
$contenido .= "<tr><td colspan=2 align=left><b>Consulta: </td></tr><tr><td colspan=2 align=left >".$_POST["consulta"]."</td></tr>";
$contenido .= "<tr><td colspan=2 height=10px bgcolor=black></td></tr>";
$contenido .= "</table>";
$header "From: email@indedomain\nReply-To:".$_POST["correo"]."\n"// if the domain is www.text.com the email from like this: info@text.com
$header .= "Mime-Version: 1.0\n";
$header .= "Content-Type: text/html";
if(
mail($para$asunto$contenido ,$header)){
print(
'<div id="adv">Your message has been sent successfully || Su Consulta ha sido enviada con éxito</div>');
}

else {
print(
'<div id="adv">An error occurred, please try again later || Ha ocurrido un error, por favor vuelva a intentarlo más tarde</div>');
}    
?>