I think I just found the solution
Changing the following in common_helper.php:
//if ($emailcharset!='utf-8')
if ($emailcharset!='iso-8859-15')
{
// $body=mb_convert_encoding($body,$emailcharset,'utf-8');
// $subject=mb_convert_encoding($subject,$emailcharset,'utf-8');
// $sitename=mb_convert_encoding($sitename,$emailcharset,'utf-8');
$body=mb_convert_encoding($body,$emailcharset,'iso-8859-15');
$subject=mb_convert_encoding($subject,$emailcharset,'iso-8859-15');
$sitename=mb_convert_encoding($sitename,$emailcharset,'iso-8859-15');
}
I have tried that in email.php and config.php with the parameter emailcharset
And it's possible that a change in some other file is better. But this seems to work.
/Kenneth