Initial DEV environment from production snapshot

This commit is contained in:
2025-11-22 10:51:24 +00:00
commit 143a17a6e7
18 changed files with 474 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.";
}