PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » Mail » Mail_Mime » Bug #1943

build parameters in mime->get() don't work

Details

Submitted2004-07-22 03:10 UTC
Fromlyl at staff dot cn99 dot com
StatusNo Feedback
PackageMail_Mime
PHP VersionIrrelevant
OSDebian woody
Roadmaps(Not assigned)

Comments

[2004-07-22 03:10 UTC] lyl at staff dot cn99 dot com

Description:
------------
I'm writing a program to send a chinese mail to all uers. When I set parameters in $mime->get($param), it didn't work, actually in mime object variable _buildparameters remained unchanged, finally i have to send mail through following method :

<code>
$mime = new Mail_mime("\r\n");
$mime->_build_params[html_charset] = "GB2312";
$mime->_build_params[text_charset] = "GB2312";
$mime->_build_params[head_charset] = "GB2312";
</code>