summaryrefslogtreecommitdiffstats
path: root/Bugzilla/BugMail.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/BugMail.pm')
-rw-r--r--Bugzilla/BugMail.pm8
1 files changed, 8 insertions, 0 deletions
diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm
index 59b911878..6466448bc 100644
--- a/Bugzilla/BugMail.pm
+++ b/Bugzilla/BugMail.pm
@@ -453,6 +453,10 @@ sub sendMail {
sub enqueue {
my ($vars) = @_;
+
+ # BMO: allow modification of the email at the time it was generated
+ Bugzilla::Hook::process('bugmail_enqueue', { vars => $vars });
+
# we need to flatten all objects to a hash before pushing to the job queue.
# the hashes need to be inflated in the dequeue method.
$vars->{bug} = _flatten_object($vars->{bug});
@@ -544,6 +548,10 @@ sub _generate_bugmail {
$email->content_type_set('multipart/alternative');
}
$email->parts_set(\@parts);
+
+ # BMO: allow modification of the email given the enqueued variables
+ Bugzilla::Hook::process('bugmail_generate', { vars => $vars, email => $email });
+
return $email;
}