-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.py
26 lines (20 loc) · 959 Bytes
/
example.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from emailSender import EmailSender
from emailScheduler import EmailScheduler
# Create an instance of EmailSender with your email credentials
sender_email = "[email protected]"
password = "yourpassword"
email_sender = EmailSender(sender_email, password)
# Read the content of the HTML file
with open('htmlfile.html', 'r') as file:
html_body = file.read()
# Create an instance of EmailScheduler using the EmailSender instance
email_scheduler = EmailScheduler(email_sender)
# Schedule sending a daily email
receiver_email = "[email protected]"
subject = "Daily Report"
#html_body = "<html><body><h1>This is a HTML email</h1><p>This is a paragraph</p></body></html>"
email_scheduler.schedule_daily_email(receiver_email, subject, html_body, is_html=True, time='01:00')
#body = "Put your daily report content here."
#email_scheduler.schedule_daily_email(receiver_email, subject, body, time='00:22')
# Run the scheduler
email_scheduler.run_scheduler()