Hallo,
wollte Euch die Lösung nicht vorenthalten:
#############
$/ and $\
If you change the $/ ($RS, $INPUT_RECORD_SEPARATOR) or $\ ($ORS, $OUTPUT_RECORD_SEPARATOR) or $, ($OFS, $OUTPUT_FIELD_SEPARATOR) Mail::Sender may stop working! Keep in mind that those variables are global and therefore they change the behaviour of <> and print everywhere. And since the SMTP is a plain text protocol if you change the notion of lines you can break it.
If you have to fiddle with $/, $\ or $, do it in the smallest possible block of code and local()ize the change!
#############
Es ist doch nichts so hilfreich, wie Dokumentationen genauestens zu lesen.
(:-)))
Thomas