email testing

This commit is contained in:
2026-01-26 12:55:56 +01:00
parent e64465a7e6
commit f8684077a2
7 changed files with 447 additions and 12 deletions

View File

@@ -23,7 +23,21 @@ SMTP_USERNAME=your-email@yourdomain.com
SMTP_PASSWORD=your-password-or-app-password
```
**Security Note:** The `.env` file is gitignored and should never be committed to version control.
**Important Notes:**
- **NO quotes needed** - Values should be plain text without quotes
- **Special characters are OK** - Passwords with `!@#$%` etc. work fine
- **Security:** The `.env` file is gitignored and should never be committed to version control
**Examples:**
```env
# Correct - no quotes
SMTP_USERNAME=admin@example.com
SMTP_PASSWORD=P@ssw0rd!123
# Wrong - don't use quotes
SMTP_USERNAME="admin@example.com" # ❌
SMTP_PASSWORD='P@ssw0rd!123' # ❌
```
### 2. Edit `config.yaml`