@@ -, +, @@ --- basket/sendbasket.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/basket/sendbasket.pl +++ a/basket/sendbasket.pl @@ -131,8 +131,9 @@ if ( $email_add ) { } if ( $template_res =~ /(.*)/s ) { - $body = encode_qp($1); + $body = $1; $body =~ s|\n?(.*)\n?|$1|; + $body = encode("UTF-8", encode_qp(decode("UTF-8", $body))); } my $boundary = "====" . time() . "===="; --