Ver Mensaje Individual
  #7 (permalink)  
Antiguo 30/03/2010, 10:41
Avatar de Yuukan
Yuukan
 
Fecha de Ingreso: septiembre-2004
Ubicación: Vivo en Guatemala
Mensajes: 29
Antigüedad: 19 años, 7 meses
Puntos: 0
Respuesta: Caracteres extraños en asunto del mail

Si a alguién sigue sin funcionarle esta solución pueden usar esta función que a mí m funciono:

Cita:
function mime_header_encode($string) {
if (preg_match('/[^\x20-\x7E]/', $string)) {
return ' =?UTF-8?B?'. base64_encode($string) ."?=";
}
}