Commit d2ee5a82 authored by mkanat%bugzilla.org's avatar mkanat%bugzilla.org

Bug 531500: Allow the mailer_before_send hook to modify the arguments passed to Email::Send

Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=dkl, a=mkanat
parent 664d7317
...@@ -482,6 +482,9 @@ Params: ...@@ -482,6 +482,9 @@ Params:
=item C<email> - The C<Email::MIME> object that's about to be sent. =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 =back
=head2 object_before_create =head2 object_before_create
......
...@@ -171,7 +171,8 @@ sub MessageToMTA { ...@@ -171,7 +171,8 @@ sub MessageToMTA {
Debug => Bugzilla->params->{'smtp_debug'}; 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") { if ($method eq "Test") {
my $filename = bz_locations()->{'datadir'} . '/mailer.testfile'; my $filename = bz_locations()->{'datadir'} . '/mailer.testfile';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment