exception documentation

Base class for SMTP client errors.

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
def __bytes__(self) -> bytes: (source)

Undocumented

def __init__(self, code: int, resp: bytes, log: Optional[bytes] = None, addresses: Optional[object] = None, isFatal: bool = False, retry: bool = False): (source)
Parameters
code:intThe SMTP response code associated with this error.
resp:bytesThe string response associated with this error.
log:Optional[bytes]A string log of the exchange leading up to and including the error.
addresses:Optional[object]Undocumented
isFatal:boolA boolean indicating whether this connection can proceed or not. If True, the connection will be dropped.
retry:boolA 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.
def __str__(self) -> str: (source)

Undocumented

addresses = (source)

Undocumented

Undocumented

Undocumented

Undocumented

Undocumented

Undocumented