好久沒有寫文章了

最近收到某EC網站的信
但是寄件者在iphone上面沒有辦法正常顯示人類看得懂的文字
IMG_0888.PNG  

可以試試把寄件者欄位也用base64編成MIME
以php為例:

//語系:big5 , 編碼方式: base64
$from
= "=?big5?B?".base64_encode("某某寄件者")."?= <service@mybox.tw>";
$to = "xxx@mybox.tw";
$header = "From: ".$from."\n";
$header .= "Content-Type: text/html; charset=big5"."\n";
mail ($to , $subject , $content , $header);
 

arrow
arrow
    文章標籤
    mime iphone 亂碼 mail
    全站熱搜

    helloworld 發表在 痞客邦 留言(0) 人氣()