diff options
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Hook.pm | 3 | ||||
-rw-r--r-- | Bugzilla/Mailer.pm | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Bugzilla/Hook.pm b/Bugzilla/Hook.pm index 7ee033f86..b042f36ad 100644 --- a/Bugzilla/Hook.pm +++ b/Bugzilla/Hook.pm @@ -482,6 +482,9 @@ Params: =item C<email> - The C<Email::MIME> object that's about to be sent. +=item C<mailer_args> - An arrayref that's passed as C<mailer_args> to +L<Email::Send/new>. + =back =head2 object_before_create diff --git a/Bugzilla/Mailer.pm b/Bugzilla/Mailer.pm index 71dc8f1f5..fb9c5a7ca 100644 --- a/Bugzilla/Mailer.pm +++ b/Bugzilla/Mailer.pm @@ -171,7 +171,8 @@ sub MessageToMTA { Debug => Bugzilla->params->{'smtp_debug'}; } - Bugzilla::Hook::process('mailer_before_send', { email => $email }); + Bugzilla::Hook::process('mailer_before_send', + { email => $email, mailer_args => \@args }); if ($method eq "Test") { my $filename = bz_locations()->{'datadir'} . '/mailer.testfile'; |