Vega strike Python Modules doc  0.5.1
Documentation of the " Modules " folder of Vega strike
 All Data Structures Namespaces Files Functions Variables
SMTPRecipientsRefused Class Reference
Inheritance diagram for SMTPRecipientsRefused:
SMTPException

Public Member Functions

def __init__
 

Data Fields

 recipients
 
 args
 

Detailed Description

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.

Definition at line 98 of file smtplib.py.

Constructor & Destructor Documentation

def __init__ (   self,
  recipients 
)

Definition at line 106 of file smtplib.py.

107  def __init__(self, recipients):
108  self.recipients = recipients
109  self.args = ( recipients,)
110 

Field Documentation

args

Definition at line 108 of file smtplib.py.

recipients

Definition at line 107 of file smtplib.py.


The documentation for this class was generated from the following file: