Add Mailtrap email provider - #54
Merged
Merged
Conversation
eelcoj
force-pushed
the
add-mailtrap-provider
branch
from
August 31, 2026 11:16
e011c66 to
cd62a9f
Compare
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.
Adds Mailtrap as a transactional email provider.
Posts to
https://send.api.mailtrap.io/api/send— the sending host, not the sandbox one. Authentication uses Mailtrap's ownApi-Tokenheader rather thanAuthorization: Bearer.The body shape matches MailerSend's:
fromandreply_toas address objects,to/cc/bccas arrays of them, andsubject/text/htmlas strings.lib/courrier/email/providers/mailtrap.rb— the providerlib/courrier/email/provider.rb— require + registry entryREADME.md— added to the supported providers listtest/courrier/email/providers/mailtrap_test.rb— body formatting, auth header, registry lookup, and that optional fields are dropped rather than sent asnullFull suite passes locally: 104 runs, 197 assertions, 0 failures, 0 errors, 0 skips.
Part of #35 — ticks the Mailtrap box.
Note: verified against Mailtrap's API documentation, not against a live account, so the payload shape is unconfirmed on their side.