Initial commit: struttura base Diplomacy Web App con header/footer e auth

This commit is contained in:
2025-11-21 16:04:22 +00:00
commit 052b8182aa
17 changed files with 367 additions and 0 deletions

8
testmail.php Executable file
View File

@@ -0,0 +1,8 @@
<?php
require_once __DIR__ . '/send_email.php';
if(sendEmail('ginctronic@gmail.com','Test PHPMailer','Se ricevi questa mail, Gmail funziona!')){
echo "Mail inviata correttamente!";
} else {
echo "Errore nell'invio della mail, controlla log.";
}