X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FMailer.pm;h=eb94ae3f799dc27571894f4c4457409a4d66bcc5;hb=5737ce39a18326f1c3ae70a5afcc2d494fb901c7;hp=2f2408119ced7f7ff6f6d2d274264367d0be2569;hpb=0d1bb5102f01eb03da55bc87b52ac52cd7ae7534;p=kivitendo-erp.git diff --git a/SL/Mailer.pm b/SL/Mailer.pm index 2f2408119..eb94ae3f7 100644 --- a/SL/Mailer.pm +++ b/SL/Mailer.pm @@ -17,7 +17,8 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, +# MA 02110-1335, USA. #====================================================================== package Mailer; @@ -25,8 +26,12 @@ package Mailer; use Email::Address; use Email::MIME::Creator; use File::Slurp; +use List::UtilsBy qw(bundle_by); use SL::Common; +use SL::DB::EmailJournal; +use SL::DB::EmailJournalAttachment; +use SL::DB::Employee; use SL::MIME; use SL::Template; @@ -34,6 +39,11 @@ use strict; my $num_sent = 0; +my %mail_delivery_modules = ( + sendmail => 'SL::Mailer::Sendmail', + smtp => 'SL::Mailer::SMTP', +); + sub new { my ($type, %params) = @_; my $self = { %params }; @@ -50,7 +60,7 @@ sub _create_driver { myconfig => \%::myconfig, ); - my $module = ($::lx_office_conf{mail_delivery}->{method} || 'smtp') ne 'smtp' ? 'SL::Mailer::Sendmail' : 'SL::Mailer::SMTP'; + my $module = $mail_delivery_modules{ $::lx_office_conf{mail_delivery}->{method} }; eval "require $module" or return undef; return $module->new(%params); @@ -117,26 +127,25 @@ sub _create_address_headers { sub _create_attachment_part { my ($self, $attachment) = @_; - my $source_file_name; - my %attributes = ( disposition => 'attachment', encoding => 'base64', ); + my $attachment_content; + if (ref($attachment) eq "HASH") { $attributes{filename} = $attachment->{name}; - $source_file_name = $attachment->{filename}; + $attachment_content = $attachment->{content} // eval { read_file($attachment->{filename}) }; } else { # strip path $attributes{filename} = $attachment; $attributes{filename} =~ s:.*\Q$self->{fileid}\E:: if $self->{fileid}; $attributes{filename} =~ s:.*/::g; - $source_file_name = $attachment; + $attachment_content = eval { read_file($attachment) }; } - my $attachment_content = eval { read_file($source_file_name) }; return undef if !defined $attachment_content; my $application = ($attachment =~ /(^\w+$)|\.(html|text|txt|sql)$/) ? 'text' : 'application'; @@ -185,7 +194,7 @@ sub send { # Create driver for delivery method (sendmail/SMTP) $self->{driver} = eval { $self->_create_driver }; if (!$self->{driver}) { - $::lxdebug->leave_sub(); + $self->_store_in_journal('failed', 'driver could not be created; check your configuration'); return "send email : $@"; } @@ -198,20 +207,77 @@ sub send { 'X-Mailer' => "kivitendo $self->{version}", ]; - # Clean up To/Cc/Bcc address fields - $self->_cleanup_addresses; - $self->_create_address_headers; + my $error; + my $ok = eval { + # Clean up To/Cc/Bcc address fields + $self->_cleanup_addresses; + $self->_create_address_headers; + + my $email = $self->_create_message; + + # $::lxdebug->message(0, "message: " . $email->as_string); + # return "boom"; + + $self->{driver}->start_mail(from => $self->{from}, to => [ $self->_all_recipients ]); + $self->{driver}->print($email->as_string); + $self->{driver}->send; + + 1; + }; + + $error = $@ if !$ok; + + $self->_store_in_journal; - my $email = $self->_create_message; + return $ok ? '' : "send email: $error"; +} + +sub _all_recipients { + my ($self) = @_; + + $self->{addresses} ||= {}; + return map { @{ $self->{addresses}->{$_} || [] } } qw(to cc bcc); +} - # $::lxdebug->message(0, "message: " . $email->as_string); - # return "boom"; +sub _store_in_journal { + my ($self, $status, $extended_status) = @_; - $self->{driver}->start_mail(from => $self->{from}, to => [ map { @{ $self->{addresses}->{$_} } } qw(to cc bcc) ]); - $self->{driver}->print($email->as_string); - $self->{driver}->send; + my $journal_enable = $::instance_conf->get_email_journal; - return ''; + return if $journal_enable == 0; + + $status //= $self->{driver}->status if $self->{driver}; + $status //= 'failed'; + $extended_status //= $self->{driver}->extended_status if $self->{driver}; + $extended_status //= 'unknown error'; + + my @attachments; + + @attachments = grep { $_ } map { + my $part = $self->_create_attachment_part($_); + if ($part) { + SL::DB::EmailJournalAttachment->new( + name => $part->filename, + mime_type => $part->content_type, + content => $part->body, + ) + } + } @{ $self->{attachments} || [] } if $journal_enable > 1; + + my $headers = join "\r\n", (bundle_by { join(': ', @_) } 2, @{ $self->{headers} || [] }); + + SL::DB::EmailJournal->new( + sender => SL::DB::Manager::Employee->current, + from => $self->{from} // '', + recipients => join(', ', $self->_all_recipients), + subject => $self->{subject} // '', + headers => $headers, + body => $self->{message} // '', + sent_on => DateTime->now_local, + attachments => \@attachments, + status => $status, + extended_status => $extended_status, + )->save; } 1;