equal
deleted
inserted
replaced
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): |