8 lines
279 B
Python
8 lines
279 B
Python
# This is a class to help the client side with holding the mail structure that mimics the one used by the server
|
|
class ClientTempMail:
|
|
def __init__(self):
|
|
self.from_address = None
|
|
self.to_address_list = []
|
|
self.subject = None
|
|
self.body = None
|