Hi,

Hayk Chamyan <[EMAIL PROTECTED]> wrote:

> 
> I'm  trying  to send a UTF-8 encoded e-mail using mb_send_mail() under
> PHP 4.3.0 with the MBString extension. 
> 
> mb_send_mail() adds the following lines to the e-mail header:
> Mime-Version: 1.0
> Content-Type: text/plain; charset=UTF-8
> Content-Transfer-Encoding: BASE64
> 
> But it doesn't encode the message body into MIME base64 and I'm forced to use
> mb_send_mail($address, $subject, chunk_split(base64_encode($msg)), $extra_headers);

What if prepending a single line

mb_language("uni");

right before the mb_send_mail() call?



Moriyoshi


-- 
PHP Internationalization Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to