From c8721eaefd3ec9ce4d5b0497cceb0c9ecde4676c Mon Sep 17 00:00:00 2001 From: Francesco Picone Date: Tue, 9 Dec 2025 16:32:15 +0100 Subject: [PATCH] fix mail --- includes/config.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/config.php b/includes/config.php index 5edb9b3..0134461 100644 --- a/includes/config.php +++ b/includes/config.php @@ -67,7 +67,7 @@ define('PAYPAL_API_URL', PAYPAL_SANDBOX ? // ============================================ // Configurazione per l'invio di email -define('MAIL_FROM', 'noreply@pilatesstudio.com'); +define('MAIL_FROM', 'pilatesstudio@gmail.com'); define('MAIL_FROM_NAME', 'Pilates Studio'); // Usa SMTP per invio email affidabile @@ -77,8 +77,8 @@ define('USE_SMTP', true); // Imposta false per usare mail() PHP di base // Per Gmail: usa password applicazione da https://myaccount.google.com/apppasswords define('SMTP_HOST', 'smtp.gmail.com'); define('SMTP_PORT', 587); -define('SMTP_USERNAME', 'tua-email@gmail.com'); // Inserisci la tua email Gmail -define('SMTP_PASSWORD', 'tua-password-applicazione'); // Password applicazione (16 caratteri) +define('SMTP_USERNAME', 'pyco.networking@gmail.com'); // Inserisci la tua email Gmail +define('SMTP_PASSWORD', 'iaxuxsvggkfmbzpa'); // Password applicazione (16 caratteri) define('SMTP_ENCRYPTION', 'tls'); // tls o ssl // ============================================