PostieはメールをFetchして、Subjectをwp_postテーブルのpost_titleに、本文のテキストを同テーブルpost_contentに格納します。なので、INSERT直前に文字コードを変更するようにしてみました。
以下は、postie-functions.phpの修正内容です。
1 2 3 4 5 6 7 8 |
1188,1190d1187 < $content = mb_convert_encoding($content, 'UTF-8', 'auto'); < $subject = mb_convert_encoding($subject, 'UTF-8', 'auto'); < 1193c1190 < 'post_date' => $post_date, --- > 'post_date' => $post_date, |