前天升級了WordPress 2.0.5… Posted on 2006/11/01 by applepig 然後備份的e-mail標題就變成亂碼了 解決方法 在wp-includes文件夹中的pluggable-functions.php里面,查找 return @mail($to, $subject, $message, $headers); 替换成 return @mail($to, "=?" . get_settings('blog_charset') . "?B?" . base64_encode($subject) . "?=", $message, $headers); Share This: