class SMTPClientError(SMTPError): (source)
Known subclasses: twisted.mail.smtp.ESMTPClientError, twisted.mail.smtp.SMTPConnectError, twisted.mail.smtp.SMTPDeliveryError, twisted.mail.smtp.SMTPProtocolError, twisted.mail.smtp.SMTPTimeoutError
| Method | __bytes__ |
Undocumented |
| Method | __init__ |
No summary |
| Method | __str__ |
Undocumented |
| Instance Variable | addresses |
Undocumented |
| Instance Variable | code |
Undocumented |
| Instance Variable | isFatal |
Undocumented |
| Instance Variable | log |
Undocumented |
| Instance Variable | resp |
Undocumented |
| Instance Variable | retry |
Undocumented |
twisted.mail.smtp.SMTPConnectError, twisted.mail.smtp.SMTPProtocolError, twisted.mail.smtp.SMTPTimeoutError| Parameters | |
code:int | The SMTP response code associated with this error. |
resp:bytes | The string response associated with this error. |
log:Optional[ | A string log of the exchange leading up to and including the error. |
addresses:Optional[ | Undocumented |
isFatal:bool | A boolean indicating whether this connection can proceed or not. If True, the connection will be dropped. |
retry:bool | A boolean indicating whether the delivery should be retried. If True and the factory indicates further retries are desirable, they will be attempted, otherwise the delivery will be failed. |