Código PHP:
$to = "[email protected]";
$asunto = 'NUEVO CONTACTO';
$headers = "from: $email\n";
$headers .= 'Bcc: [email protected]' . "\n";
$headers .= "reply-to: $email\n\n";
$mensaje .= "Contacto desde Web\n";
$mensaje .= "Enviado el:___________ " . date('d/m/Y', time());
mail($to, $asunto, $mensaje, $headers);