(self, request, selected)
| 419 | |
| 420 | @admin.action |
| 421 | def mail_admin(self, request, selected): |
| 422 | EmailMessage( |
| 423 | "Greetings from a ModelAdmin action", |
| 424 | "This is the test email from an admin action", |
| 425 | "from@example.com", |
| 426 | ["to@example.com"], |
| 427 | ).send() |
| 428 | |
| 429 | |
| 430 | @admin.action( |
nothing calls this directly
no test coverage detected