Hi, Im using a webapp created with CGI::App, I want to email the oracle errors to our support team.
I send emails with Mime::lite, this works fine. My emailerror sub is:
emailerror{
my $error = @_;
warn "error: $error";
return;
}
if I call this with any other value from my app it works fine, when I call itpassing $self->dbh->errstr then it doesnt work