Class t.m.s.SMTPSenderFactory(protocol.ClientFactory):

Part of twisted.mail.smtp View Source View In Hierarchy

Known subclasses: twisted.mail.smtp.ESMTPSenderFactory

Utility factory for sending emails easily.

Split Table into Classes Show Methods in One Table

Line # Kind Name Docs
1630 Method __init__
1669 Method clientConnectionFailed Called when a connection has failed to connect.
1672 Method clientConnectionLost Called when an established connection is lost.
1688 Method buildProtocol Create an instance of a subclass of Protocol.
1665 Method _removeDeferred Undocumented
1675 Method _processConnectionError Undocumented

Inherited from ClientFactory:

Line # Kind Name Docs
110 Method startedConnecting Called when a connection has been started.

Inherited from Factory (via ClientFactory):

Line # Kind Name Docs
39 Method doStart Make sure startFactory is called.
50 Method doStop Make sure stopFactory is called.
65 Method startFactory This will be called before I begin listening on a Port or Connector.
76 Method stopFactory This will be called before I stop listening on all Ports/Connectors.
Line # Kind Name Docs
1630 Method __init__
1688 Method buildProtocol Create an instance of a subclass of Protocol.
1669 Method clientConnectionFailed Called when a connection has failed to connect.
1672 Method clientConnectionLost Called when an established connection is lost.
39 Method doStart Make sure startFactory is called.
50 Method doStop Make sure stopFactory is called.
110 Method startedConnecting Called when a connection has been started.
65 Method startFactory This will be called before I begin listening on a Port or Connector.
76 Method stopFactory This will be called before I stop listening on all Ports/Connectors.
1675 Method _processConnectionError Undocumented
1665 Method _removeDeferred Undocumented
def __init__(self, fromEmail, toEmail, file, deferred, retries=5, timeout=None): (source)
ParametersfromEmailThe RFC 2821 address from which to send this message.
toEmailA sequence of RFC 2821 addresses to which to send this message.
fileA file-like object containing the message to send.
deferredA Deferred to callback or errback when sending of this message completes.
retriesThe number of times to retry delivery of this message.
timeoutPeriod, in seconds, for which to wait for server responses, or None to wait forever.
def _removeDeferred(self, argh): (source)
Undocumented
def clientConnectionFailed(self, connector, err): (source)

Called when a connection has failed to connect.

It may be useful to call connector.connect() - this will reconnect.
Parametersreason (type: twisted.python.failure.Failure )
def clientConnectionLost(self, connector, err): (source)

Called when an established connection is lost.

It may be useful to call connector.connect() - this will reconnect.
Parametersreason (type: twisted.python.failure.Failure )
def _processConnectionError(self, connector, err): (source)
Undocumented
def buildProtocol(self, addr): (source)

Create an instance of a subclass of Protocol.

The returned instance will handle input on an incoming server connection, and an attribute "factory" pointing to the creating factory.

Override this method to alter how Protocol instances get created.
Parametersaddran object implementing twisted.internet.interfaces.IAddress
API Documentation for Twisted, generated by pydoctor at 2008-10-26 16:12:37.