Update app.py
Browse files
app.py
CHANGED
|
@@ -118,7 +118,7 @@ def copy_to_clipboard(text):
|
|
| 118 |
def send_feedback_via_email(name, email, feedback):
|
| 119 |
"""Sends an email with feedback details."""
|
| 120 |
smtp_server = 'smtp.yourdomain.com' # Replace with GoDaddy SMTP server
|
| 121 |
-
smtp_port =
|
| 122 |
smtp_user = os.getenv("EMAIL_ADDRESS")
|
| 123 |
smtp_password = os.getenv("Password")
|
| 124 |
|
|
|
|
| 118 |
def send_feedback_via_email(name, email, feedback):
|
| 119 |
"""Sends an email with feedback details."""
|
| 120 |
smtp_server = 'smtp.yourdomain.com' # Replace with GoDaddy SMTP server
|
| 121 |
+
smtp_port = 465 # Typically 587 for TLS, 465 for SSL
|
| 122 |
smtp_user = os.getenv("EMAIL_ADDRESS")
|
| 123 |
smtp_password = os.getenv("Password")
|
| 124 |
|