I have a PHP Mail script that sends out emails and I need to send some out in Chinese. I have the following code:

$email_header = "From: $from\n";
$email_header .= "X-Priority: 1\n"; //1 UrgentMessage, 3 Normal
$email_header .= "Return-Path: <$return>\n";
$email_header .= "Content-type: text/html; charset=utf-8\n";
mail($row["email"], '=?UTF-8?B?'.base64_encode($subject).'?=', $email_body, $email_header);

The issue I have is with both the Subject of the Email and the body - it is sending as follows:

Subject: ???????????

Body: ???????????????

?????

??????????????????????????????????????????????????

????? 

Clearly not Chinese!!! If anyone can point me in the right direction, that would be great.

Thanks in advance,

Homer.

link|improve this question

Most likely your data is broken (i.e. not utf-8) before you even get here. What do you see when you echo rather than mail? I say this because I have a practically identical script that works just fine for non-English characters. – awm Apr 21 '11 at 14:41
Stored in the MySQL database as 'utf8_unicode_ci' and appears fine in there and on other pagers - will check Echo now. – Homer_J Apr 21 '11 at 14:44
OK, checked the Echo and it is the same, just a series if ?'s. The .PHP page is set to UTF-8 as well. :-( – Homer_J Apr 21 '11 at 14:45
Do you do a set names utf-8 query when you connect to the db? May be necessary. – awm Apr 21 '11 at 14:46
DOH! - pop that in as a solution AWM and I'll give you a tick of approval - thanks! Been driving me nuts!!!!! – Homer_J Apr 21 '11 at 14:51
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

Looks like a database connection issue rather than a mailer issue. Perhaps forgot to do a set names utf-8...?

link|improve this answer
Perfect :-) as my name suggests - DOH! – Homer_J Apr 21 '11 at 14:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.