sub SendMail { my ($recipients, $subject, $msg) = @_; $msg=MIME::Lite->new( To => "$recipients", From => "$fromAddress", Subject => "$subject", Type => 'text/html', Data => "$msg" ); MIME::Lite->send('smtp', "$mailhost"); $msg->send(); }