need to add api to send emails

This commit is contained in:
2023-01-14 12:41:33 +01:00
parent 135c638ee3
commit 8e29c462fd
4 changed files with 64 additions and 35 deletions
+9
View File
@@ -0,0 +1,9 @@
from src.pojo.contact_pojo import ContactPojo
class EmailReceiver:
def __init__(self, mail_address: str, store_type: int, id: str, date: str):
self.mail_address = mail_address
self.store_type = store_type
self.appointment_id = id
self.appointment_date = date