-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.example
More file actions
34 lines (27 loc) · 1.1 KB
/
.env.example
File metadata and controls
34 lines (27 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# ============================================
# DJANGO BULK EMAIL SENDER - LOCAL DEVELOPMENT
# ============================================
# Django Secret Key (Keep this secret!)
SECRET_KEY=your-secret-key-here
# ============================================
# GMAIL SMTP CONFIGURATION
# ============================================
# Gmail SMTP Settings
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
# Your Gmail Address
SMTP_USER=your-email@gmail.com
# Gmail App Password (NOT your regular password!)
# Generate one at: https://myaccount.google.com/apppasswords
SMTP_PASSWORD=your-16-char-app-password
# Sender Display Name
SENDER_EMAIL=your-email@gmail.com
SENDER_NAME=Your Name or Company
# ============================================
# IMPORTANT NOTES
# ============================================
# 1. Create your own .env file by copying this .env.example
# 2. NEVER commit your .env file to Git (it's in .gitignore)
# 3. For Gmail, you MUST use an "App Password", not your regular password
# 4. Generate App Password: https://myaccount.google.com/apppasswords
# 5. This configuration is for LOCAL DEVELOPMENT ONLY