Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -24,8 +24,8 @@ def email_sender(sender_add, password, to_emails, num_emails):
|
|
24 |
|
25 |
def main():
|
26 |
st.title("Email Sender App")
|
27 |
-
sender_email = st.text_input("Your Email"
|
28 |
-
sender_password = st.text_input("Your Email Password"
|
29 |
recipient_emails = st.text_input("Recipient Emails (comma separated without space)")
|
30 |
num_emails = st.slider("Number of Emails", min_value=1, max_value=10)
|
31 |
|
|
|
24 |
|
25 |
def main():
|
26 |
st.title("Email Sender App")
|
27 |
+
sender_email = st.text_input("Your Email")
|
28 |
+
sender_password = st.text_input("Your Email Password")
|
29 |
recipient_emails = st.text_input("Recipient Emails (comma separated without space)")
|
30 |
num_emails = st.slider("Number of Emails", min_value=1, max_value=10)
|
31 |
|