Discovered that ActionMailer *_deliver callbacks don't respect only/except options in Rails.
Turns out it's a really simple fix because Mailers are Controllers behind the scenes.
github.com/rails/rails/...
Motivation / Background
only: and except: options are ignored in ActionMailer callbacks when added in #47630. This feels inconsistent so this uses the same normalization wrapper from AbstractContro...