diff options
Diffstat (limited to 'Bugzilla/BugMail.pm')
-rw-r--r-- | Bugzilla/BugMail.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 7412838f7..7a92b13a5 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -42,6 +42,7 @@ use Bugzilla::Product; use Bugzilla::Component; use Bugzilla::Status; use Bugzilla::Mailer; +use Bugzilla::Hook; use Date::Parse; use Date::Format; @@ -425,6 +426,9 @@ sub Send { } } } + + Bugzilla::Hook::process('bugmail_recipients', + { recipients => \%recipients }); # Find all those user-watching anyone on the current list, who is not # on it already themselves. |