Quería preguntar si afecta en algo el orden que uno de a las variables que forman el header para la función mail. Es decir, es igual colocar asi:
Código PHP:
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: [email][email protected][/email]\r\n";
$headers .= "Reply-To: [email][email protected][/email]\r\n";
$headers .= "X-Mailer: Microsoft Outlook Express 6.00.2600.0000";
Código PHP:
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "Reply-To: [email][email protected][/email]\r\n";
$headers .= "X-Mailer: Microsoft Outlook Express 6.00.2600.0000";
$encabezado_adm = $headers." From: [email][email protected][/email]\r\n";