-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (30 loc) · 1009 Bytes
/
.env.example
File metadata and controls
37 lines (30 loc) · 1009 Bytes
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
35
36
37
# Open Build Outreach Automation Configuration
# Copy this file to .env and fill in your actual values
# Email Configuration (Required)
BREVO_API_URL=https://api.brevo.com/v3/smtp/email
BREVO_API_KEY=your_brevo_api_key_here
SENDER_EMAIL=your-sender@yourdomain.com
SENDER_NAME=Your Name
FROM_EMAIL=your-from@yourdomain.com
# Email Recipients
TEAM_EMAIL=team@yourdomain.com
ADMIN_EMAIL=admin@yourdomain.com
SECONDARY_EMAIL=secondary@yourdomain.com
BCC_EMAILS=bcc1@yourdomain.com,bcc2@yourdomain.com
# Database Configuration
DB_PATH=outreach_automation.db
# Logging Configuration
LOG_FILE=outreach_automation.log
LOG_LEVEL=INFO
# API Keys (Optional - for enhanced features)
# GOOGLE_SHEETS_API_KEY=your_google_sheets_api_key
# CRUNCHBASE_API_KEY=your_crunchbase_api_key
# CLEARBIT_API_KEY=your_clearbit_api_key
# LINKEDIN_ACCESS_TOKEN=your_linkedin_token
# System Configuration
MAX_EMAILS_PER_DAY=50
RATE_LIMIT_DELAY=1
REPORT_RETENTION_DAYS=30
# Development/Testing Settings
DEBUG_MODE=false
DRY_RUN=false