Skip to content
This repository was archived by the owner on Jun 7, 2025. It is now read-only.

Commit 70b2ae5

Browse files
committed
fix: correggi l'indirizzo del server SMTP nella configurazione del servizio email
1 parent 625e195 commit 70b2ae5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/service/email_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def __init__(self):
1818
MAIL_FROM=os.getenv("MAIL_ADDRESS","unipd.codehex16@gmail.com"),
1919
MAIL_FROM_NAME=os.getenv("MAIL_USERNAME",""),
2020
MAIL_PORT=os.getenv("MAIL_PORT",587),
21-
MAIL_SERVER=os.getenv("MAIL_SERVER","smtp.gmail.it"),
21+
MAIL_SERVER=os.getenv("MAIL_SERVER","smtp.gmail.com"),
2222
MAIL_STARTTLS = os.getenv("MAIL_STARTTLS",True),
2323
MAIL_SSL_TLS = os.getenv("MAIL_SSL_TLS", False),
2424
USE_CREDENTIALS=os.getenv("MAIL_USE_CREDENTIALS",True),

0 commit comments

Comments
 (0)