MCPcopy Index your code
hub / github.com/python/cpython / SMTPRecipientsRefused

Class SMTPRecipientsRefused

Lib/smtplib.py:115–125  ·  view source on GitHub ↗

All recipient addresses refused. The errors for each recipient are accessible through the attribute 'recipients', which is a dictionary of exactly the same sort as SMTP.sendmail() returns.

Source from the content-addressed store, hash-verified

113 self.args = (code, msg, sender)
114
115class SMTPRecipientsRefused(SMTPException):
116 """All recipient addresses refused.
117
118 The errors for each recipient are accessible through the attribute
119 'recipients', which is a dictionary of exactly the same sort as
120 SMTP.sendmail() returns.
121 """
122
123 def __init__(self, recipients):
124 self.recipients = recipients
125 self.args = (recipients,)
126
127
128class SMTPDataError(SMTPResponseException):

Callers 1

sendmailMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…