9 lines
237 B
Bash
9 lines
237 B
Bash
|
|
# Copy this to .env and fill in values to enable email sending.
|
||
|
|
# .env is gitignored — never commit real credentials.
|
||
|
|
|
||
|
|
SMTP_HOST=smtp.gmail.com
|
||
|
|
SMTP_PORT=587
|
||
|
|
SMTP_USER=you@gmail.com
|
||
|
|
SMTP_PASS=your-app-password
|
||
|
|
EMAIL_FROM=you@gmail.com
|