use MIME:Lite; sub _mailme { my ($to, $subject, $runlog, $mksysblog) = @_; $msg = MIME::Lite->new( From => 'MAILER-DAEMON root', To => "$to", Subject => "$subject", Type => 'multipart/related' ); $msg->attach( Type =>'TEXT/html', Data =>"See attachment!" ); $msg->attach( Type => 'TEXT', Disposition => 'attachment', Path => "$runlog", Filename => "$runlog" ); if ( $mksysblog ) { $msg->attach( Type => 'TEXT', Disposition => 'attachment', Path => "$mksysblog", Filename => "$mksysblog" ); } $msg->send; }