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