Skip to content

Commit

Permalink
updated environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
william-lundgren committed Mar 8, 2024
1 parent 2e84431 commit b33675a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions classroom-mail.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ def send_mail(receiver_email, content, day):
# Setup and send mail
port = 465 # For SSL
smtp_server = "smtp.gmail.com"
sender_email = os.getenv("sender")
password = os.getenv("password")
sender_email = os.getenv("sender_mail")
password = os.getenv("mail_password")
message = f"""\
Subject: Dagens bra klassrum ({day}). Ha en fin dag.
Expand Down

0 comments on commit b33675a

Please sign in to comment.