Migration zu PHPMailer: Sicherer E-Mail-Versand mit externen Credentials

This commit is contained in:
2026-02-03 19:40:24 +01:00
parent ff7de4f628
commit 1168ae8f8e
10 changed files with 7852 additions and 33 deletions

21
forms/config.php.example Normal file
View File

@@ -0,0 +1,21 @@
<?php
/**
* SMTP Configuration Example
*
* Kopieren Sie diese Datei zu config.php und tragen Sie Ihre SMTP-Zugangsdaten ein.
* Die config.php wird von Git ignoriert und enthält sensible Daten.
*/
return [
'smtp_host' => 'mail.webfarben.net',
'smtp_username' => 'ihre-email@domain.de',
'smtp_password' => 'ihr-passwort',
'smtp_port' => 587,
'smtp_encryption' => 'tls', // 'tls' oder 'ssl'
'from_email' => 'ihre-email@domain.de',
'from_name' => 'Buckenleib Finanzen',
'to_email' => 'info@buckenleib-finanzen.de',
'to_name' => 'Benno Buckenleib',
];