feat: Email Notification System for Bounty Updates (Closes #841)#1045
Closed
muou0712 wants to merge 1 commit intoSolFoundry:mainfrom
Closed
feat: Email Notification System for Bounty Updates (Closes #841)#1045muou0712 wants to merge 1 commit intoSolFoundry:mainfrom
muou0712 wants to merge 1 commit intoSolFoundry:mainfrom
Conversation
…#841) Complete email notification backend with: - SQLite-backed subscription management (CRUD, frequency, category/tier filters) - Email delivery via SMTP with TLS support - HTML email templates for new bounties, completions, and digests - Digest batching (daily/weekly) for non-instant subscribers - GitHub webhook listener for real-time notifications - Delivery tracking with status logging and bounce handling - 10 unit tests (all passing) Usage: python3 scripts/email-notifier.py subscribe --email user@example.com --categories backend,ai python3 scripts/email-notifier.py notify --repo owner/repo --issue 123 python3 scripts/email-notifier.py digest --frequency daily python3 scripts/email-notifier.py webhook --port 8081 python3 scripts/email-notifier.py stats Wallet: 47HxQss7ctt6fFymSo8gevkYUWJPxieYFDG1eWQK7AjU
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements the Email Notification System from #841.
Closes #841
Wallet:
47HxQss7ctt6fFymSo8gevkYUWJPxieYFDG1eWQK7AjUSummary
Complete email notification backend that alerts contributors when bounties matching their interests are posted, updated, or completed.
Components
scripts/email-notifier.py: Full notification system (1004 lines)scripts/test_email_notifier.py: 10 unit tests, all passingFeatures
Usage