my $mailer = Mail::Mailer->new('sendmail'); $mailer->open({From => 'someone@somewhere.com', To => 'recipient@someplace.com', Subject => 'this is the subject'}); print $mailer "this is the body!"; $mailer->close();