Skip to content

Commit

Permalink
Implemented database and reporting for daily loaners. Also removed te…
Browse files Browse the repository at this point in the history
…mp email address
  • Loading branch information
adamsher committed May 17, 2023
1 parent b2ce6bf commit a4eb3a8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/devicekiosk.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,8 +445,7 @@ def emailDailyReport(self, body):
msg['Subject'] = 'Daily Loaner Report'
msg.set_content(body)
msg['From'] = self.config["smtp_user"]
# msg['To'] = self.config["daily_email_list"]
msg['To'] = "asher@tolland.k12.ct.us"
msg['To'] = self.config["daily_email_list"]

# Send the message via Gmail SMTP server
s = smtplib.SMTP("smtp.gmail.com", 587)
Expand Down

0 comments on commit a4eb3a8

Please sign in to comment.