Email Configuration Status

Current Mail Configuration

Mail Driver: log
From Address: hello@example.com
From Name: Laravel

Emails are being logged, not sent!

To send actual emails, configure SMTP in your .env file.

Check storage/logs/laravel.log to view logged emails.

Recent Password Reset Requests

No password reset requests yet.

How to Configure Email:

  1. Open your .env file
  2. Add/update these lines:
    MAIL_MAILER=smtp
    MAIL_HOST=smtp.gmail.com
    MAIL_PORT=587
    MAIL_USERNAME=your-email@gmail.com
    MAIL_PASSWORD=your-app-password
    MAIL_ENCRYPTION=tls
    MAIL_FROM_ADDRESS=your-email@gmail.com
    MAIL_FROM_NAME="Uptaste Admin"
  3. Clear config cache: php artisan config:clear
  4. Refresh this page to see updated configuration

Note: For Gmail, you need to use an App Password (not your regular password). See EMAIL_SETUP.md for detailed instructions.