Opened 17 years ago

Closed 16 years ago

#4707 closed (wontfix)

Allow attachements in mail_{admins,managers}

Reported by: calvin@… Owned by: Thejaswi Puthraya
Component: Core (Mail) Version: dev
Severity: Keywords: sprintdec01
Cc: Triage Stage: Ready for checkin
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The patch adds a parameter to send attachements with mail_admins() and mail_managers() methods.

Attachments (2)

mail_attachements.diff (1.3 KB ) - added by calvin@… 17 years ago.
mail_attachments_1.diff (1.3 KB ) - added by Thejaswi Puthraya 16 years ago.
corrected the typos in the previous diff

Download all attachments as: .zip

Change History (7)

by calvin@…, 17 years ago

Attachment: mail_attachements.diff added

comment:1 by Malcolm Tredinnick, 17 years ago

Resolution: wontfix
Status: newclosed

As explained in the documentation, the whole idea of creating the more object-oriented design for email was to avoid adding more and more parameters to the existing methods. Those methods are there for backwards compatibility only. They won't be extended with any new parameters (if you want to use the new features, you have to change your code anyway. Switching to using EmailMessage takes no time).

comment:2 by Malcolm Tredinnick, 17 years ago

Component: Uncategorizeddjango.core.mail
Resolution: wontfix
Status: closedreopened
Triage Stage: UnreviewedDesign decision needed

Thinking this over a bit more, there might be a case for admin and manager mail to allow it, since the equivalent code is a bit fiddly to write.

(We can't use the existing patch, though, since it misspells "attachment" everywhere.)

comment:3 by calvin@…, 16 years ago

Perhaps it is helpful to tell for what I am needing this. Whenever a server error occurs, I mail a traceback.html attachment (which is manually generated from the django debug error view) using the mail_admins() method. Then I can open the traceback.html on my local box and analyze the problem without touching the server which runs in non-debug mode.

I will send an updated patch without the spelling error once I get to it.

by Thejaswi Puthraya, 16 years ago

Attachment: mail_attachments_1.diff added

corrected the typos in the previous diff

comment:4 by Thejaswi Puthraya, 16 years ago

Keywords: sprintdec01 added
Owner: changed from nobody to Thejaswi Puthraya
Status: reopenednew
Triage Stage: Design decision neededReady for checkin

comment:5 by Malcolm Tredinnick, 16 years ago

Resolution: wontfix
Status: newclosed

This isn't worth extending the API for. If you want to add extra stuff beyond want mail_admins does, you can write your own handler and an exception middleware. The support already exists for that.

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