my $msg = build MIME::Lite From => 'sender@email', To => $mail_recipient, Subject => $mail_subject, Type => 'text/plain', Data => $mail_text; attach $msg Type => "text/plain", Path => $original_file, Encoding => "base64", MIME::Lite->send('smtp', $mail_server_ip, Timeout=>60); $msg->send;