|
Server : Apache System : Linux cvar2.toservers.com 3.10.0-962.3.2.lve1.5.73.el7.x86_64 #1 SMP Wed Aug 24 21:31:23 UTC 2022 x86_64 User : njnconst ( 1116) PHP Version : 8.4.18 Disable Function : NONE Directory : /usr/lib64/python2.7/site-packages/django/core/mail/backends/ |
Upload File : |
�
r�\c @ s d Z d e f d � � YZ d S( s Base email backend class.t BaseEmailBackendc B s5 e Z d Z e d � Z d � Z d � Z d � Z RS( sp
Base class for email backend implementations.
Subclasses must at least overwrite send_messages().
c K s
| | _ d S( N( t
fail_silently( t selfR t kwargs( ( s@ /tmp/pip-install-XxeQeY/django/django/core/mail/backends/base.pyt __init__ s c C s d S( s" Open a network connection.
This method can be overwritten by backend implementations to
open a network connection.
It's up to the backend implementation to track the status of
a network connection if it's needed by the backend.
This method can be called by applications to force a single
network connection to be used when sending mails. See the
send_messages() method of the SMTP backend for a reference
implementation.
The default implementation does nothing.
N( ( R ( ( s@ /tmp/pip-install-XxeQeY/django/django/core/mail/backends/base.pyt open s c C s d S( s Close a network connection.N( ( R ( ( s@ /tmp/pip-install-XxeQeY/django/django/core/mail/backends/base.pyt close s c C s
t � d S( so
Sends one or more EmailMessage objects and returns the number of email
messages sent.
N( t NotImplementedError( R t email_messages( ( s@ /tmp/pip-install-XxeQeY/django/django/core/mail/backends/base.pyt
send_messages"