Aktualisierung der SMTP-Konfiguration im Kontaktformular: Testwerte durch echte SMTP-Daten ersetzt. Bereinigung des Codes durch Entfernen nicht benötigter Felder und Verbesserung der Validierungslogik. Anpassungen in der README-Dokumentation zur E-Mail-Konfiguration vorgenommen.

This commit is contained in:
Samuel Müller
2025-08-01 14:00:18 +02:00
parent ccab2355c4
commit 5088da82e9
7 changed files with 324 additions and 678 deletions

View File

@@ -35,14 +35,14 @@
// SMTP Konfiguration - HIER IHRE WERTE EINTRAGEN
$smtp_config = [
// SMTP Server-Einstellungen
'smtp_host' => 'YOUR_SMTP_HOST', // z.B. smtp.gmail.com
'smtp_host' => 'smtp.gmail.com', // z.B. smtp.gmail.com
'smtp_port' => 587, // 587 für TLS, 465 für SSL
'smtp_username' => 'YOUR_SMTP_USERNAME', // z.B. info@hexahost.de
'smtp_password' => 'YOUR_SMTP_PASSWORD', // Ihr SMTP-Passwort
'smtp_username' => 'test@hexahost.de', // z.B. info@hexahost.de
'smtp_password' => 'your-app-password', // Ihr SMTP-Passwort
'smtp_encryption' => 'tls', // 'tls' oder 'ssl'
// Absender-Einstellungen
'from_email' => 'info@hexahost.de', // Absender-E-Mail
'from_email' => 'test@hexahost.de', // Absender-E-Mail
'from_name' => 'HexaHost.de Kontaktformular', // Absender-Name
// Empfänger-Einstellungen