Hola, por más que busco en el foro de php no encuentro un post donde diga simplemente que código debo introducir para que cuando el checkbox de Recibir copia esté marcado envié copia del mensaje al email del usuario, gracias!
formulario.html
Código HTML:
Ver original<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<meta name="description" content=""> <meta name="keywords" content=""> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta name="language" content="es">
<form method="post" action="formulario.php"> <input type="text" name="nombre" size="25" maxlength="40" class="campos"> <input type="text" name="email" size="25" maxlength="40" class="campos"> <input type="checkbox" name="copia">Recibir copia del mensaje
</strong><br><br> <input name="submit" type="submit" class="boton" value="Enviar">
formulario.php
Código PHP:
Ver original<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Formulario</title>
<meta name="description" content="">
<meta name="keywords" content="">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="language" content="es">
</head>
<body>
<div>
<?php
if(isset($_POST['submit'])) {
$subject = "Grupo de empresas: ".$_POST['nombre'].", ".$_POST['empresa'];
$nombre = $_POST['nombre'];
$empresa = $_POST['empresa'];
$telefono = $_POST['telefono'];
$email = $_POST['email'];
$mensaje = $_POST['mensaje'];
$formato = "Content-type: text/html; charset=iso-8859-1\r\n";
$body = "<font face='arial, helvetica, sans-serif' size='2'><p>Se ha solicitado desde la web que se le envíe información a:</p>
<table width='700' border='0' align='left'>
<tr>
<td width='50'><font size='2'><b>Nombre:</b></td>
<td width='650'><font size='2'>".$nombre."</td>
</tr>
<tr>
<td><font size='2'><b>E-mail:</b></td>
<td><font size='2'>".$email."</td>
</tr>
<tr>
<td valign='top'><font size='2'><b>Mensaje:</b></td>
<td><font size='2'>".$mensaje."</td>
</tr>
</table></font>";
echo "Gracias por su interés. En breve recibirá una respuesta.";
mail($to, $subject, $body, $formato);
} else {
echo "El mensaje no ha sido enviado, por favor inténtelo de nuevo.";
}
?>
</div>
</body>
</html>