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
676 B
Plaintext
22 lines
676 B
Plaintext
rules_version = '2';
|
|
|
|
service cloud.firestore {
|
|
match /databases/{database}/documents {
|
|
// Allow read/write to drafts collection
|
|
match /drafts/{document} {
|
|
allow read, write: if true; // You can add authentication rules here
|
|
}
|
|
|
|
// Allow read/write to sent emails for tracking
|
|
match /sentEmails/{document} {
|
|
allow read, write: if true; // You can add authentication rules here
|
|
}
|
|
|
|
// Allow read access to email logs for admin purposes
|
|
match /emailLogs/{document} {
|
|
allow read: if true; // You can add admin authentication here
|
|
allow write: if false; // Only functions should write to this collection
|
|
}
|
|
}
|
|
}
|