Migration zu PHPMailer: Sicherer E-Mail-Versand mit externen Credentials
This commit is contained in:
21
forms/config.php.example
Normal file
21
forms/config.php.example
Normal 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',
|
||||
];
|
||||
Reference in New Issue
Block a user