Matthias Meiners: (E-MAIL) E-Mail mit Perl: HTML-Mail mit text/plain-Alternative

Hallo,

kann mir jemand sagen, warum mein Mailclient nur ein leeres Dokument anzeigt, wenn ich folgendes
mit Perl per E-Mail verschicke:

Message-ID: <$Message_ID@smhpv.de>
From: $Absender_Name <$Absender_mail>
MIME-Version: 1.0
To: $Empfaenger_mail
Subject: $Betreff
Content-Type: multipart/alternative;
boundary="$boundary1"

$boundary1
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Testtext

$boundary1
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<body>
Testtext
</body>
</html>

$boundary1--

Matthias