1"""Base email backend class.""" 2 3 4classBaseEmailBackend: 5""" 6 Base class for email backend implementations. 7 8 Subclasses must at least overwrite send_messages(). 910 open() and close() can be called indirectly by using a backend object as a11 context manager:1213 with backend as connection:14 # do something with connection15 pass16 """1718def__init__(self,fail_silently=False,**kwargs):19self.fail_silently=fail_silently2021defopen(self):22"""23 Open a network connection.2425 This method can be overwritten by backend implementations to26 open a network connection.2728 It's up to the backend implementation to track the status of29 a network connection if it's needed by the backend.3031 This method can be called by applications to force a single32 network connection to be used when sending mails. See the33 send_messages() method of the SMTP backend for a reference34 implementation.3536 The default implementation does nothing.37 """38pass3940defclose(self):41"""Close a network connection."""42pass4344def__enter__(self):45try:46self.open()47exceptException:48self.close()49raise50returnself5152def__exit__(self,exc_type,exc_value,traceback):53self.close()5455defsend_messages(self,email_messages):56"""57 Send one or more EmailMessage objects and return the number of email58 messages sent.59 """60raiseNotImplementedError(61"subclasses of BaseEmailBackend must override send_messages() method"62)