# Messing function for regular e-mail using the e-mail status
# function

$MSGFUNCS{'email'} = \&msg_email;

sub msg_email {
   my ($email,$subject,$body) = @_;

   &email($email,$subject,$body);
   &debug( "mail message sent to $email" );
}

# Required becuase I'm included perl code
1;


