Lo que necesito es poner en el auto reply, una plantilla que tengo disenada en html, para que el auto reply la envie al correo puesto en el formulario.
Este Es Mi codigo PHP
Código PHP:
<?php
//Type the receiever's e-mail address
$emailAddress = "@hotmail.com";
//Type your Site Name
$siteName = "";
$contact_name = $_POST['nombre'];
$contact_email = $_POST['email'];
$contact_telefono = $_POST['telefono'];
$contact_message = $_POST['mensage'];
if( $contact_name == true ) {
$sender = $contact_email;
$receiver = $emailAddress;
$client_ip = $_SERVER['REMOTE_ADDR'];
$email_body = "El nombre del remitente: $contact_name \nEmail: $sender \nTelefono: $contact_telefono
\nMessage: \n$contact_message \n\nIP ADDRESS: $client_ip \n\n$siteName";
$emailAutoReply = "Hi $contact_name, \n\nAcabamos de recibir su correo electronico. Nos pondremos en contacto
//de inmediato con usted. ¡Gracias! \n\n$siteName ";
$extra = "From: $sender\r\n" . "Reply-To: $sender \r\n" . "X-Mailer: PHP/" . phpversion();
$autoReply = "From: $receiver\r\n" . "Reply-To: $receiver \r\n" . "X-Mailer: PHP/" . phpversion();
mail( $sender, "Auto Reply: $contact_subject", $emailAutoReply, $autoReply );
if( mail( $receiver, "New E-Mail - $contact_subject", $email_body, $extra ) ) {
echo "success=yes";
} else {
echo "success=no";
}
}
?>
y este es el codigo html
Código HTML:
<html> <head> <title>ADMINISTRACION WEB</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head> <body background="jquery-xml-slider"> <center> <table border="0" cellspacing="0" cellpadding="0" width="750"> <tr> <td align="center"> <table border="0" cellspacing="0" cellpadding="0" align="center" height="50" width="70%" style="border: 0px solid #333333"> <tr> <tr> <td align="center"> <table border="0" style="border-top: 1px solid white; border-left: 2px solid white; border-right: 2px solid white; border-bottom: 2px solid blue" cellspacing="0" cellpadding="12" width="100%" bgcolor="white" align="center"> <tr> <td style="padding:12px" background="" align="left"><p> </p> <p> </p> <p><br> </p> <p> </p> <p> </p> <p><font face="verdana, arial, sans serif" size="2" style="font-size:12px"><br> Gracias por utilizar los servicios de ***** Acabamos de Recibir Su Mensaje de Correo Electronico .</font></p> <p><font face="verdana, arial, sans serif" size="2" style="font-size:12px">Tan pronto como sea posible nos pondremos en contacto con usted<font face="verdana, arial, sans serif" size="2" style="font-size:12px">.</font></font></p> <p> </p> <p><font face="verdana, arial, sans serif" size="2" style="font-size:12px"><br> <br> </font></p></td> </tr> </table> </td> </tr> </table> </td> </tr> <tr> <td align="center" width="100%"><font face="verdana, arial, sans serif" size="1" style="font-size:10px;-webkit-text-size-adjust:none"> Copyright © 2011, Todos los derechos reservados</font></td> </tr> </table></center> </html> </body> </html>
gracias de ante mano