# ═══════════════════════════════════════════════════════════════════════════════ # AUTHENTICATION PLUGIN - EMAIL CONFIGURATION # ═══════════════════════════════════════════════════════════════════════════════ # SMTP Server Settings (für Email-Versand) # ───────────────────────────────────────────────────────────────────────────── # Beispiel für Gmail: SMTP_SERVER=smtp.gmail.com SMTP_PORT=587 SMTP_USER=deine-email@gmail.com SMTP_PASSWORD=dein-app-passwort # Beispiel für Outlook/Hotmail: # SMTP_SERVER=smtp-mail.outlook.com # SMTP_PORT=587 # SMTP_USER=deine-email@outlook.com # SMTP_PASSWORD=dein-passwort # Beispiel für Yahoo: # SMTP_SERVER=smtp.mail.yahoo.com # SMTP_PORT=587 # SMTP_USER=deine-email@yahoo.com # SMTP_PASSWORD=dein-app-passwort # Beispiel für custom SMTP (z.B. eigener Server): # SMTP_SERVER=mail.deine-domain.de # SMTP_PORT=587 # SMTP_USER=noreply@deine-domain.de # SMTP_PASSWORD=dein-passwort # Absender-Info FROM_EMAIL=noreply@noahski.ai FROM_NAME=NoahsKI # ═══════════════════════════════════════════════════════════════════════════════ # GMAIL APP-PASSWORT ERSTELLEN # ═══════════════════════════════════════════════════════════════════════════════ # # Wenn du Gmail nutzt, brauchst du ein "App-Passwort" (nicht dein normales Passwort): # # 1. Gehe zu: https://myaccount.google.com/security # 2. Aktiviere "2-Schritt-Verifizierung" (falls noch nicht aktiv) # 3. Gehe zu "App-Passwörter" # 4. Wähle "Mail" und "Windows-Computer" (oder "Anderes Gerät") # 5. Kopiere das generierte 16-stellige Passwort # 6. Füge es oben bei SMTP_PASSWORD ein (ohne Leerzeichen) # # Beispiel: SMTP_PASSWORD=abcd efgh ijkl mnop (ohne Leerzeichen!) # # ═══════════════════════════════════════════════════════════════════════════════ # ═══════════════════════════════════════════════════════════════════════════════ # ALTERNATIVE: MAILGUN (für Production) # ═══════════════════════════════════════════════════════════════════════════════ # # Mailgun ist ein professioneller Email-Service mit 5000 kostenlosen Emails/Monat # # 1. Registriere dich auf: https://www.mailgun.com # 2. Verifiziere deine Domain (oder nutze ihre Sandbox-Domain) # 3. Hole dir die SMTP Credentials # 4. Füge sie hier ein: # # SMTP_SERVER=smtp.mailgun.org # SMTP_PORT=587 # SMTP_USER=postmaster@deine-domain.mailgun.org # SMTP_PASSWORD=dein-mailgun-passwort # # ═══════════════════════════════════════════════════════════════════════════════ # ═══════════════════════════════════════════════════════════════════════════════ # ALTERNATIVE: SENDGRID (für Production) # ═══════════════════════════════════════════════════════════════════════════════ # # SendGrid bietet 100 kostenlose Emails pro Tag # # 1. Registriere dich auf: https://sendgrid.com # 2. Erstelle einen API Key # 3. Füge ihn hier ein: # # SMTP_SERVER=smtp.sendgrid.net # SMTP_PORT=587 # SMTP_USER=apikey # SMTP_PASSWORD=dein-sendgrid-api-key # # ═══════════════════════════════════════════════════════════════════════════════