Hola amigos, no se nada de PHP, he comprado una plantilla web, quiero que cuando se envíe un formulario llegue con copia oculta a otro correo.
Código:
Código PHP:
Ver original<?php
// Your Email Address
// Register Form
if ( isset($_POST['telephone']) && isset($_POST['name']) && filter_var($_POST['email'], FILTER_VALIDATE_EMAIL
) ) {
// Detect & Prevent Header Injections
$test = "/(content-type|bcc:|cc:|to:)/i";
foreach ( $_POST as $key => $val ) {
}
}
// Email Format
$body = "SOLICITANTE: \n\n";
$body .= "Nombre: $_POST[name] \n\n";
$body .= "Correo: $_POST[email] \n\n";
$body .= "Telefono: $_POST[telephone] \n\n";
$body .= "Hotel: $_POST[ticket] \n\n";
$body .= "Fecha de llegada: $_POST[llegada] \n\n";
$body .= "Fecha de salida: $_POST[salida] \n\n";
$body .= "Nro. de adultos: $_POST[adultos] \n\n";
//Send email
mail( $youremail, "Solicitud Tarifa Alojamientos", $body, "From:" . $_POST['email'] );
}
?>
Gracias por su ayuda.