¿Podéis echarme un cable???
Código PHP:
<?
$from = $_POST['email'];
$subject = 'Asunto del mail';
$message = 'Nombre y Apellidos: ' . $_POST['name'] . "\n".
'Telefono: ' . $_POST['tel'] . "\n".
'Nombre y Apellidos 2: ' . $_POST['name2'] . "\n".
'Telefono: ' . $_POST['telf2'] . "\n".
$headers = "From: ". $from . "\n";
mail ('[email protected]', $subject, $message, $headers);
header('Location: pagina de verificacion.html');
?>