feat(inbound): MailgunInboundParser + DI registration#25
Open
mpge wants to merge 1 commit intofeat/inbound-email-controllerfrom
Open
feat(inbound): MailgunInboundParser + DI registration#25mpge wants to merge 1 commit intofeat/inbound-email-controllerfrom
mpge wants to merge 1 commit intofeat/inbound-email-controllerfrom
Conversation
Adds Mailgun as the second supported inbound provider alongside Postmark. Mailgun POSTs multipart/form-data with snake-case field names (sender / recipient / body-plain / body-html / Message-Id / In-Reply-To / References / attachments). The controller's signature already accepts any dictionary-shaped payload, so no controller changes needed — just register the new parser and route via ?adapter=mailgun. Notes: - Mailgun's 'from' is typically 'Name <email>' — we extract the display name portion separately and fall back to the sender field for the email. - Mailgun hosts attachment content behind a URL (large attachments). We carry the URL through in DownloadUrl; a follow-up worker can fetch + persist out-of-band. - Malformed attachments JSON degrades gracefully (empty list, no exception propagation). 7 xUnit tests exercise core field extraction, threading headers, provider-hosted attachment parsing, malformed attachment JSON, sender→from fallback, bare-email (no display name) handling, and the adapter name contract.
This was referenced Apr 24, 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
Adds Mailgun as the second supported inbound provider alongside Postmark (from #24). Mailgun POSTs multipart/form-data with snake-case field names (
sender/recipient/body-plain/body-html/Message-Id/In-Reply-To/References/attachments). The controller's signature already accepts any dictionary-shaped payload, so no controller changes needed — register the new parser and route via?adapter=mailgun.Notes
fromis typically"Name <email>"— we extract the display name portion separately and fall back to thesenderfield for the email.DownloadUrl; a follow-up worker can fetch + persist out-of-band.Dependencies
feat/inbound-email-controller). Merge order: feat(email): add MessageIdUtil for RFC 5322 threading + signed Reply-To #21 → feat(email): wire MessageIdUtil into EmailTemplates + signed Reply-To #22 → feat(inbound): scaffold InboundMessage + IInboundEmailParser + InboundEmailRouter #23 → feat(inbound): PostmarkInboundParser + InboundEmailController + DI wiring #24 → this PR.Test plan