22 lines
601 B
Plaintext
22 lines
601 B
Plaintext
<?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',
|
|
];
|