class SMTPSenderFactory(protocol.ClientFactory): (source)
Known subclasses: twisted.mail.smtp.ESMTPSenderFactory
Constructor: SMTPSenderFactory(fromEmail, toEmail, file, deferred, ...)
Utility factory for sending emails easily.
Method | __init__ |
No summary |
Method | build |
Create an instance of a subclass of Protocol. |
Method | client |
Called when a connection has failed to connect. |
Method | client |
Called when an established connection is lost. |
Instance Variable | current |
The current running protocol returned by buildProtocol . |
Instance Variable | file |
Undocumented |
Instance Variable | from |
Undocumented |
Instance Variable | n |
Undocumented |
Instance Variable | result |
Undocumented |
Instance Variable | retries |
Undocumented |
Instance Variable | send |
When the value is set to True, it means the message has been sent or there has been an unrecoverable error or the sending has been cancelled. The default value is False. |
Instance Variable | timeout |
Undocumented |
Instance Variable | to |
Undocumented |
Method | _process |
Undocumented |
Method | _remove |
Undocumented |
Method | _remove |
Remove the protocol created in buildProtocol. |
Inherited from ClientFactory
:
Method | started |
Called when a connection has been started. |
Inherited from Factory
(via ClientFactory
):
Class Method | for |
Create a factory for the given protocol. |
Method | do |
Make sure startFactory is called. |
Method | do |
Make sure stopFactory is called. |
Method | log |
Describe this factory for log messages. |
Method | start |
This will be called before I begin listening on a Port or Connector. |
Method | stop |
This will be called before I stop listening on all Ports/Connectors. |
Class Variable | noisy |
Undocumented |
Class Variable | protocol |
Undocumented |
Instance Variable | num |
Undocumented |
twisted.mail.smtp.ESMTPSenderFactory
Parameters | |
from | The RFC 2821 address from which to send this message. |
to | A sequence of RFC 2821 addresses to which to send this message. |
file | A file-like object containing the message to send. |
deferred:defer.Deferred | A Deferred to callback or errback when sending of this message completes. |
retries | The number of times to retry delivery of this message. |
timeout | Period, in seconds, for which to wait for server responses, or None to wait forever. |
twisted.mail.smtp.ESMTPSenderFactory
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.
Alternatively, None
may be returned to immediately close the new connection.
Override this method to alter how Protocol instances get created.
Parameters | |
addr | an object implementing IAddress |
Called when a connection has failed to connect.
It may be useful to call connector.connect() - this will reconnect.
Parameters | |
connector | Undocumented |
err | Undocumented |
reason:twisted.python.failure.Failure | Undocumented |
Called when an established connection is lost.
It may be useful to call connector.connect() - this will reconnect.
Parameters | |
connector | Undocumented |
err | Undocumented |
reason:twisted.python.failure.Failure | Undocumented |
twisted.mail.smtp.ESMTPSenderFactory
The current running protocol returned by buildProtocol
.
When the value is set to True, it means the message has been sent or there has been an unrecoverable error or the sending has been cancelled. The default value is False.
Remove the protocol created in buildProtocol.
Parameters | |
result | The result/error passed to the callback/errback of defer.Deferred . |
Returns | |
The result untouched. |