iro/model/message.py
branchdevel
changeset 198 85ede27b1add
parent 193 e5ec4bfa4929
child 235 c5d8384caf68
equal deleted inserted replaced
197:73b11797781b 198:85ede27b1add
    26     def sendto(self,anbieter,recipients):
    26     def sendto(self,anbieter,recipients):
    27         anbieter.sendSMS(self,recipients)
    27         anbieter.sendSMS(self,recipients)
    28 
    28 
    29 
    29 
    30 class Fax(Message):
    30 class Fax(Message):
    31     def __init__(self,header,cont,attachments):
    31     def __init__(self,header,cont,attachments=[]):
    32         Message.__init__(self,cont, typ="fax")
    32         Message.__init__(self,cont, typ="fax")
    33         self.header=header
    33         self.header=header
    34         self.attachments=attachments
    34         self.attachments=attachments
    35 
    35 
    36     def getAttachment(self,i):
    36     def getAttachment(self,i):