15 lines
549 B
Python
15 lines
549 B
Python
import streamlit as st
|
|
from webpages.SendEmail import send_email
|
|
|
|
# # Example usage of the send_email function
|
|
# if __name__ == "__main__":
|
|
# send_email(
|
|
# sender_email="noreply@buffteks.org", # Sender's email address
|
|
# password="cidm4360fall2024@*", # Sender's email password
|
|
# to_email="REPLACE_WITH_RESIDENT_EMAIL", # Recipient's email address
|
|
# subject="Package Pickup Notification", # Subject of the email
|
|
# )
|
|
|
|
def testing():
|
|
st.write("Testing Page")
|