django-orchestra/orchestra/contrib/mailboxes/actions.py
2015-04-05 10:46:24 +00:00

8 lines
208 B
Python

from orchestra.admin.actions import SendEmail
class SendMailboxEmail(SendEmail):
def get_queryset_emails(self):
for mailbox in self.queryset.all():
yield mailbox.get_local_address()