Leser: 4
4 Einträge, 1 Seite |
open (MAIL, "|$MailPgm $Mail") || die "Fehler beim Zugriff auf $MailPgm!\n";
1
2
my $MailPgm = '/usr/sbin/sendmail -t';
open (MAIL, "|$MailPgm") || die "Fehler beim Zugriff auf $MailPgm!\n";
1
2
3
4
5
6
7
8
9
10
use Mail::Mailer;
$mailer = Mail::Mailer->new("sendmail");
$mailer->open({ From => $from,
To => $to,
Subject => $sub,
})
or die "[*]error: $!\n";
print $mailer $body;
$mailer->close();
Quote-i When reading a message from standard input, don't treat a line with only a . char-
acter as the end of input.
4 Einträge, 1 Seite |