mirror of
https://github.com/Gowtham-Darkseid/MailComposer.git
synced 2026-04-15 16:08:27 +02:00
44ea4d2e64
- Rich email composer with formatting tools (bold, italic, underline, links) - Multi-recipient support (To, CC, BCC fields) - File attachments with drag & drop support - Priority levels and email validation - Draft management with auto-save and cloud sync - Real email sending via EmailJS integration - Responsive design for mobile and desktop - Comprehensive error handling and fallback modes - Complete documentation and setup guides - Firebase integration ready for advanced features Features: ✅ Real email sending (EmailJS) ✅ Rich text editor ✅ File attachments ✅ Draft management ✅ Form validation ✅ Responsive UI ✅ Error handling ✅ Documentation
22 lines
710 B
Bash
22 lines
710 B
Bash
# Firebase Configuration
|
|
# Copy this file to .env and fill in your actual values
|
|
|
|
# Firebase Project Configuration
|
|
VITE_FIREBASE_API_KEY=your-api-key-here
|
|
VITE_FIREBASE_AUTH_DOMAIN=your-project.firebaseapp.com
|
|
VITE_FIREBASE_PROJECT_ID=your-project-id
|
|
VITE_FIREBASE_STORAGE_BUCKET=your-project.appspot.com
|
|
VITE_FIREBASE_MESSAGING_SENDER_ID=123456789
|
|
VITE_FIREBASE_APP_ID=your-app-id
|
|
|
|
# Email Configuration (for Firebase Functions)
|
|
# These should be set in Firebase Functions configuration
|
|
GMAIL_USER=your-email@gmail.com
|
|
GMAIL_PASSWORD=your-app-password
|
|
|
|
# Alternative email service configuration
|
|
# EMAIL_USER=your-email@example.com
|
|
# EMAIL_PASSWORD=your-password
|
|
# EMAIL_HOST=smtp.example.com
|
|
# EMAIL_PORT=587
|