Estoy teniendo problemas para que la función mail me mande las cabeceras. Si le pongo esto, funciona:
Código:
Pero si le añado destinatario me llega sin formato html:$destino ="[email protected]"; $asunto = "Contacto Web"; $cuerpo ='xxxx'; $cabeceras = "Content-type: text/html"; mail($destino,$asunto,$cuerpo,$cabeceras);
Código:
//$cabeceras .= "From: xx\r\n";
Gracias por ayudarme.