我用下面的代碼來發送電子郵件:PHP mail();如何設置字符集爲主題和電子郵件
<?php
$to = $_POST['email'];
$subject = "Subject!";
$message = "Hello!";
$headers = "From: Me<[email protected]>\r\n";
$headers .= "Return-Path: [email protected]\r\n";
$headers .= "BCC: [email protected]\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/plain; charset=utf-8\r\n";
mail($to,$subject,$message,$headers);
?>
雖然使用charset=utf-8
在主題和電子郵件地址線的人物仍然沒有得到解碼對。我收到了這樣的字符:ößä
。
如何設置主題和電子郵件地址的字符集呢?
你檢查所提供的答案嗎?如果它是正確的,請接受它。謝謝! – Dekel