Files
phython-mimic-smtp-clientse…/Client/ClientTempMail.py
2025-07-05 14:24:22 +01:00

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