Python django.core.mail.mail_admins() Examples
The following are 10
code examples of django.core.mail.mail_admins().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
django.core.mail
, or try the search function
.
Example #1
Source File: test_settings.py From micromasters with BSD 3-Clause "New" or "Revised" License | 7 votes |
def test_admin_settings(self): """Verify that we configure email with environment variable""" with mock.patch.dict('os.environ', { **REQUIRED_SETTINGS, 'MICROMASTERS_ADMIN_EMAIL': '' }, clear=True): settings_vars = self.reload_settings() self.assertFalse(settings_vars.get('ADMINS', False)) test_admin_email = 'cuddle_bunnies@example.com' with mock.patch.dict('os.environ', { **REQUIRED_SETTINGS, 'MICROMASTERS_ADMIN_EMAIL': test_admin_email, }, clear=True): settings_vars = self.reload_settings() self.assertEqual( (('Admins', test_admin_email),), settings_vars['ADMINS'] ) # Manually set ADMIN to our test setting and verify e-mail # goes where we expect settings.ADMINS = (('Admins', test_admin_email),) mail.mail_admins('Test', 'message') self.assertIn(test_admin_email, mail.outbox[0].to)
Example #2
Source File: log.py From GTDWeb with GNU General Public License v2.0 | 5 votes |
def send_mail(self, subject, message, *args, **kwargs): mail.mail_admins(subject, message, *args, connection=self.connection(), **kwargs)
Example #3
Source File: log.py From bioforum with MIT License | 5 votes |
def send_mail(self, subject, message, *args, **kwargs): mail.mail_admins(subject, message, *args, connection=self.connection(), **kwargs)
Example #4
Source File: log.py From Hands-On-Application-Development-with-PyCharm with MIT License | 5 votes |
def send_mail(self, subject, message, *args, **kwargs): mail.mail_admins(subject, message, *args, connection=self.connection(), **kwargs)
Example #5
Source File: log.py From python with Apache License 2.0 | 5 votes |
def send_mail(self, subject, message, *args, **kwargs): mail.mail_admins(subject, message, *args, connection=self.connection(), **kwargs)
Example #6
Source File: log.py From luscan-devel with GNU General Public License v2.0 | 5 votes |
def emit(self, record): try: request = record.request subject = '%s (%s IP): %s' % ( record.levelname, (request.META.get('REMOTE_ADDR') in settings.INTERNAL_IPS and 'internal' or 'EXTERNAL'), record.getMessage() ) filter = get_exception_reporter_filter(request) request_repr = filter.get_request_repr(request) except Exception: subject = '%s: %s' % ( record.levelname, record.getMessage() ) request = None request_repr = "Request repr() unavailable." subject = self.format_subject(subject) if record.exc_info: exc_info = record.exc_info stack_trace = '\n'.join(traceback.format_exception(*record.exc_info)) else: exc_info = (None, record.getMessage(), None) stack_trace = 'No stack trace available' message = "%s\n\n%s" % (stack_trace, request_repr) reporter = ExceptionReporter(request, is_email=True, *exc_info) html_message = self.include_html and reporter.get_traceback_html() or None mail.mail_admins(subject, message, fail_silently=True, html_message=html_message)
Example #7
Source File: log.py From openhgsenti with Apache License 2.0 | 5 votes |
def send_mail(self, subject, message, *args, **kwargs): mail.mail_admins(subject, message, *args, connection=self.connection(), **kwargs)
Example #8
Source File: log.py From python2017 with MIT License | 5 votes |
def send_mail(self, subject, message, *args, **kwargs): mail.mail_admins(subject, message, *args, connection=self.connection(), **kwargs)
Example #9
Source File: tests.py From djongo with GNU Affero General Public License v3.0 | 5 votes |
def test_uses_custom_email_backend(self): """ Refs #19325 """ message = 'All work and no play makes Jack a dull boy' admin_email_handler = self.get_admin_email_handler(self.logger) mail_admins_called = {'called': False} def my_mail_admins(*args, **kwargs): connection = kwargs['connection'] self.assertIsInstance(connection, MyEmailBackend) mail_admins_called['called'] = True # Monkeypatches orig_mail_admins = mail.mail_admins orig_email_backend = admin_email_handler.email_backend mail.mail_admins = my_mail_admins admin_email_handler.email_backend = ( 'logging_tests.logconfig.MyEmailBackend') try: self.logger.error(message) self.assertTrue(mail_admins_called['called']) finally: # Revert Monkeypatches mail.mail_admins = orig_mail_admins admin_email_handler.email_backend = orig_email_backend
Example #10
Source File: tests.py From djongo with GNU Affero General Public License v3.0 | 5 votes |
def test_uses_custom_email_backend(self): """ Refs #19325 """ message = 'All work and no play makes Jack a dull boy' admin_email_handler = self.get_admin_email_handler(self.logger) mail_admins_called = {'called': False} def my_mail_admins(*args, **kwargs): connection = kwargs['connection'] self.assertIsInstance(connection, MyEmailBackend) mail_admins_called['called'] = True # Monkeypatches orig_mail_admins = mail.mail_admins orig_email_backend = admin_email_handler.email_backend mail.mail_admins = my_mail_admins admin_email_handler.email_backend = ( 'logging_tests.logconfig.MyEmailBackend') try: self.logger.error(message) self.assertTrue(mail_admins_called['called']) finally: # Revert Monkeypatches mail.mail_admins = orig_mail_admins admin_email_handler.email_backend = orig_email_backend