Opened 10 years ago

Closed 9 years ago

#22407 closed Cleanup/optimization (fixed)

AdminEmailHandler should allow overriding the mail part of emit

Reported by: Keryn Knight <django@…> Owned by: nobody
Component: Utilities Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Imagine I want, for some subset of errors, to instead mail ... well, anyone but the ADMINS, at the moment, this is difficult because subclassing AdminEmailHandler to replace the mail.mail_admins part also means copying the entire emit method. It would be useful if a method could be used instead, like so:

class MyAdminEmailHandler(AdminEmailHandler):
    def send_mail(self, **kwargs):
        mail.mail_who_I_say(connection=self.connection(), **kwargs)

With the original implementation changing such that instead of emit() calling mail.mail_admins it instead calls self.send_mail(subject=subject, message=message, html_message=html_message)

Change History (4)

comment:1 by Tim Graham, 10 years ago

Component: Core (Mail)Utilities
Triage Stage: UnreviewedAccepted

comment:3 by Tim Graham, 9 years ago

Triage Stage: AcceptedReady for checkin

comment:4 by Tim Graham <timograham@…>, 9 years ago

Resolution: fixed
Status: newclosed

In d552da1f8d42b7c6db992fee42bc4781f5fdde43:

Fixed #22407 -- Added AdminEmailHandler.send_mail().

Note: See TracTickets for help on using tickets.
Back to Top