Ver Mensaje Individual
  #16 (permalink)  
Antiguo 05/01/2010, 07:29
RobinHead
 
Fecha de Ingreso: junio-2009
Mensajes: 9
Antigüedad: 15 años, 9 meses
Puntos: 0
Respuesta: ¿como hacer un tilde?

Toma el mensaje y haz lo siguiente.

$mensaje = "".utf8_encode("ñandú")."\r\n";
$mensaje .= "".utf8_decode("ñandú")."\r\n";
$mensaje .= "".htmlentities("ñandú")."\r\n";
$mensaje .= "".htmlspecialchars("ñandú")."\r\n";

mail($para, utf8_decode($asunto),$mensaje,$header);

y ve cual llega bien.

cuéntanos.