|
Posted by kamlai on 10/28/86 11:33
I've written the following codes to include utf-8 wordings in both the
subject and the content.
$headers = "MIME-Version: 1.0\r\n".
"Content-type: text/plain; charset=utf-8\r\n".
"From: abc@abc.com";
mail("target@abc.com", "<some utf-8 wordings as subject>",
"<Another utf-8 wordings as content>", $headers);
In the email received, the content is fine , however, the subject
becomes 'strange characters'... How to solve this problem? Thanks a lot.
[Back to original message]
|