equal
deleted
inserted
replaced
13 |
13 |
14 from email.mime.text import MIMEText |
14 from email.mime.text import MIMEText |
15 from email.header import Header |
15 from email.header import Header |
16 |
16 |
17 class content: |
17 class content: |
18 def __init__(self,content): |
18 def __init__(self,content): |
19 self.content=content |
19 self.content=content |
20 |
20 |
21 def sendto(self,anbieter,recipients): |
21 def sendto(self,anbieter,recipients): |
22 pass |
22 pass |
|
23 |
|
24 def getContent(self): |
|
25 return self.content |
23 |
26 |
24 class SMS(content): |
27 class SMS(content): |
25 def __init__(self,cont): |
28 def __init__(self,cont): |
26 content.__init__(self,cont) |
29 content.__init__(self,cont) |
27 |
30 |