From 660d91459d5e2c3624bec00aa745ebdfc2480015 Mon Sep 17 00:00:00 2001 From: LMN-Tobias Date: Tue, 9 Jan 2024 23:06:51 +0100 Subject: [PATCH] config.example.php add --- config.example.php | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 config.example.php diff --git a/config.example.php b/config.example.php new file mode 100644 index 0000000..4ccce06 --- /dev/null +++ b/config.example.php @@ -0,0 +1,7 @@ +$mail->isSMTP(); +$mail->Host = 'smtp.example.com'; // SMTP-Host eintragen +$mail->SMTPAuth = true; +$mail->Username = 'deine_email@example.com'; // SMTP-Benutzername eintragen +$mail->Password = 'dein_passwort'; // SMTP-Passwort eintragen +$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; +$mail->Port = 587; // Port entsprechend konfigurieren