utf8::decode($subject); my $msg = MIME::Lite->new( From =>"mailer\@example.com", To =>"$email", Bcc =>"blubb\@example.com", Subject =>"$subject", Type =>"multipart/mixed"); $msg->attach( Type =>"TEXT", Encoding =>"8bit", content-type.charset =>"utf8", Data =>$mail_template->output ); $msg->attach( Type =>"text/html", Encoding =>"base64", Path =>"$path", Filename =>"htmldatei.htm"); $msg->send();