diff --git a/README.md b/README.md index 944a8c2..36679d8 100644 --- a/README.md +++ b/README.md @@ -701,6 +701,25 @@ exit Choose one of the following email providers: +**Generic SMTP Server (Any Provider):** + +For any standard SMTP server (custom mail server, hosting provider, etc.): + +```env +EMAIL_HOST=smtp.yourdomain.com +EMAIL_PORT=587 # Use 587 for TLS or 465 for SSL +EMAIL_USE_TLS=True # Set to True for port 587 +EMAIL_USE_SSL=False # Set to True for port 465 (not both TLS and SSL) +EMAIL_HOST_USER=noreply@yourdomain.com +EMAIL_HOST_PASSWORD=your-smtp-password +DEFAULT_FROM_EMAIL=KeepItGoing +``` + +**Common SMTP ports:** +- Port 587: STARTTLS (recommended) - use `EMAIL_USE_TLS=True` +- Port 465: SSL/TLS - use `EMAIL_USE_SSL=True` +- Port 25: Unencrypted (not recommended) + **Gmail:** 1. Enable 2-factor authentication on your Google account 2. Generate an App Password: https://myaccount.google.com/apppasswords