use strict; use Mail::Mailer; my $from_address = "perlmonk"; my $to_address = "user\@localhost"; my $subject = "hi"; my $body = "hello"; my $mailer = Mail::Mailer->new("sendmail"); $mailer->open({ From => $from_address, To => $to_address, Subject => $subject, }); print $mailer $body; $mailer->close(); #### open(MAIL, "|/usr/lib/sendmail -oi -t -odq") || die "Can't open sendmail: $!"; print MAIL < To: Recipient name Subject: Mailing with Perl this is easy. MESSAGE close(MAIL);