2012-01-17 52 views

回答

4

在PerlMonks的这个问题上有a nice article。总之,你需要编码你发送的数据。上述文章的一个例子:

use Encode; 

my $bytes = encode('utf8', $input); 
email({ 
    ... 
    charset => 'utf8', 
    _text => $bytes, 
}) ...