sub sendemail { our $file; use Mail::Sendmail; use MIME::QuotedPrint; use MIME::Base64; my %mail = (smtp => 'smtp-int', To => 'foo@bar.com, foo2@bar.com', Cc => '', From => 'no-reply@foobar.com>', Subject => 'Email subject' ); my $boundary = "====" . time() . "===="; $mail{'content-type'} = "multipart/mixed; boundary=\"$boundary\""; my $message = encode_qp( "Email body. Also use to be called message." ); open (F, $file) or die "Cannot read $file: $!"; binmode F; undef $/; $mail{body} = encode_base64(); close F; $boundary = '--'.$boundary; $mail{body} = <