[Sat May 20 18:24:48 2006] [error] Mail/Template.pm did not return a true value at /home/barrycar/public_html/jonbaglo/pl/perllib/Base.pm line 11.\nBEGIN failed--compilation aborted at /home/barrycar/public_html/jonbaglo/pl/perllib/Base.pm line 11.\nCompilation failed in require at /usr/lib/perl5/site_perl/5.8.6/Apache/Reload.pm line 132.\n #### package Mail::Template; use strict; use base qw(Template::Base); use Config; use Mail::Sendmail qw(sendmail); use Template::Base; use Template::Config; our $HOST = $Config::MAIL_HOST; our $PORT = $Config::MAIL_PORT; sub _init { my ($self, $config) = @_; $self->{HOST} = $config->{HOST} || $HOST; $self->{PORT} = $config->{PORT} || $PORT; # Set up a Template::Service instance $self->{SERVICE} = $config->{SERVICE} || Template::Config->service($config) || return $self->error(Template::Config->error); return $self; } sub process { my ($self, $input, $vars, $to, $from, $subject) = @_; my ($output, $mail, $error); my $service = $self->{SERVICE}; # return with an error if no recipient has been specified return $self->error("No recipient specified") unless $to; # process the template $output = $service->process($input, $vars); # send the mail and return or return with an error if (defined $output) { $mail->{To} = $to; $mail->{From} = $from; $mail->{Subject} = $subject; $mail->{Message} = $output; $mail->{Server} = $HOST; $mail->{Port} = $PORT; if (sendmail(%$mail)) { return 1; } else { return $self->error($Mail::Sendmail::error); } } else { return $self->error($service->error); } }