Email support on new plugin, showcase & wall of love submissions#435
Merged
Conversation
When a plugin moves to pending review, a new showcase or wall of love submission is created, or an approved showcase is edited and sent back for review, send a queued notification to support@nativephp.com — mirroring the existing support-ticket flow. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
simonhamp
marked this pull request as ready for review
July 19, 2026 01:36
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.
What & why
Support (
support@nativephp.com) wasn't being told when new items land in the review queue. This adds an email notification for each customer-facing submission, using the same mechanism as support tickets — a queuedNotification::route('mail', 'support@nativephp.com')->notify(...).Notifications sent
Plugins\Show::submitForReview()— covers first submission and re-submission after rejection)PluginPendingReviewShowcaseSubmissionForm::submit())ShowcaseSubmittedShowcaseSubmitted(re-review wording via aresubmittedflag)WallOfLoveSubmissionForm::submit())WallOfLoveSubmittedEach email summarises the submission and links to the relevant Filament admin resource for review. All are queued (
ShouldQueue), matchingSupportTicketSubmitted.Editing a showcase that is still pending does not send an email — its review state doesn't change, so re-notifying would just be noise.
Tests
ShowcaseSubmissionTest,WallOfLoveSubmissionTest— new-submission and edit paths, on-demand routing tosupport@nativephp.com, and rendered email content.CustomerPluginReviewChecksTest— extended to assert the support notification fires on plugin submit.Note
The commit also includes minor pre-existing workspace drift unrelated to this feature: an auto-detected PHP patch-version bump in the Boost docs (
8.4.22→8.4.23) and the workspace name inpackage-lock.json. Happy to drop these if preferred.🤖 Generated with Claude Code