Initial Commit

This commit is contained in:
2025-07-05 14:24:22 +01:00
commit b31d19e336
19 changed files with 3858 additions and 0 deletions

7
Client/ClientTempMail.py Normal file
View File

@ -0,0 +1,7 @@
# 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