feat: add mailer, Spanish language support, and UX improvements#1434
Closed
thomasbeaudry wants to merge 1 commit into
Closed
feat: add mailer, Spanish language support, and UX improvements#1434thomasbeaudry wants to merge 1 commit into
thomasbeaudry wants to merge 1 commit into
Conversation
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Comment on lines
+343
to
+347
| const response = await fetch(request.url, { | ||
| body: request.body, | ||
| headers: request.headers, | ||
| method: request.method | ||
| }); |
| /** Validate HTTP-transport credentials (and Mailgun domain/region) without sending a message. */ | ||
| private async verifyHttp(config: MailConfig): Promise<void> { | ||
| const request = buildVerifyRequest(config); | ||
| const response = await fetch(request.url, { headers: request.headers, method: request.method }); |
Contributor
|
This needs to be split into separate topic PRs, even if their changes are stacked. |
Collaborator
Author
Yeah i was thinking that this should be split but Claude was saying i shouldn't split it because it'd be messy. I'm going to do the 3 stacked PRs instead |
This was referenced Jul 23, 2026
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.
Summary
This PR adds email/mailer functionality, Spanish language support, and several UX improvements to Open Data Capture.
Mailer
Spanish Language Support
es) translations throughout all new and existing components using the inlinet({ en: '...', es: '...', fr: '...' })patternactiveLanguagesarray on setup statet()calls and theALL_LANGUAGESmap — no schema or architecture changes neededUX Improvements
?lang=URL parameter so remote assignments open in the correct languageOther
Test plan
?lang=es— verify gateway starts in Spanishpnpm lintandpnpm test— both pass🤖 Generated with Claude Code