X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FMailer.pm;h=6536850581a0b611669c39c8e5e697a5b1a799c1;hb=10d6fe63ec82e50322a1fe08902fde7a0c1efa4e;hp=2f2408119ced7f7ff6f6d2d274264367d0be2569;hpb=0d1bb5102f01eb03da55bc87b52ac52cd7ae7534;p=kivitendo-erp.git diff --git a/SL/Mailer.pm b/SL/Mailer.pm index 2f2408119..653685058 100644 --- a/SL/Mailer.pm +++ b/SL/Mailer.pm @@ -25,8 +25,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; @@ -117,26 +121,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 +188,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 +201,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; - my $email = $self->_create_message; + 1; + }; - # $::lxdebug->message(0, "message: " . $email->as_string); - # return "boom"; + $error = $@ if !$ok; - $self->{driver}->start_mail(from => $self->{from}, to => [ map { @{ $self->{addresses}->{$_} } } qw(to cc bcc) ]); - $self->{driver}->print($email->as_string); - $self->{driver}->send; + $self->_store_in_journal; + + return $ok ? '' : "send email: $error"; +} + +sub _all_recipients { + my ($self) = @_; - return ''; + $self->{addresses} ||= {}; + return map { @{ $self->{addresses}->{$_} || [] } } qw(to cc bcc); +} + +sub _store_in_journal { + my ($self, $status, $extended_status) = @_; + + my $journal_enable = $::instance_conf->get_email_journal; + + 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;