Class BaseEmailBackend

Base class for email backend implementations.

Declaration

class BaseEmailBackend
source link

Documentation

Subclasses must at least overwrite send_messages().

open() and close() can be called indirectly by using a backend object as a
context manager:

   with backend as connection:
       # do something with connection
       pass

Methods

Subclasses

Reexports